Announcement

Collapse
No announcement yet.

text/font size

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    text/font size

    In the 'Best Seller' template it gives you an itemised menu on the left-hand size enabling a quick jump to the section you want. How do I change the size of the font in this menu (is it called the child tree or soemthing?)
    Thanks
    Andy

    #2
    The links on the left use the "actxsmall" css class in your css file. You could modify it to suit your links however it may change other text in your site. Your best off creating a new style in your css file and modify the template to change "actxsmall" to your new style.

    CSS Help: www.w3schools.com/css

    Comment


      #3
      If you look in Act_primary.html you'll see, near the top
      Code:
      <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
      <!--
      function YahooSections(ar)
      {
      var strIDs = '';
      for (var i=1;i<=ar.length;i++)
        {
        if (ar[i].sURL != null)
          {
          strIDs += '<a href="' + ar[i].sURL + '"><span class="actxxsmall"><b><font color="NETQUOTEVAR:FGCOLORCSS">' + ar[i].sName + '</font></b></span></a><br>';
            {
            if (ar[i].pChild)
              {
              for (var j=1;j<=ar[i].pChild.length;j++)
                {
                if (ar[i].pChild[j].sURL != null)
                  {
                  strIDs += '<a href="' + ar[i].pChild[j].sURL + '"><span class="actxxsmall"><font color="NETQUOTEVAR:FGCOLORCSS">' + ar[i].pChild[j].sName + '</font></span></a><br>';
                  }
                }
              }
            }
          strIDs += '<br>'
          }
        }
      return strIDs
      }
      //-->
      </SCRIPT>
      The two lines that contain <span ....> tags are responsible for laying out the main and sub headings respectively.
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment


        #4
        Doesn't the Best Seller theme use graphics for the navigation not text?


        Bikster
        SellerDeck Designs and Responsive Themes

        Comment

        Working...
        X