Announcement

Collapse
No announcement yet.

Changing Side Menu Font Colour

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

    Changing Side Menu Font Colour

    Hi

    I have changed the colour in the side bars (clean layout) and as the menu font is black it is difficult to see. How do I change the font colour? This is the automated textual section links - not the menu buttons.

    Many thanks in advance.

    Kind regards
    Karen
    Kind Regards
    Karen

    Charmed Cards & Crafts

    #2
    Edit the Act_Primary and look towards the top for Yahoo Sections

    Code:
    unction 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="actregular"><b><font color="NETQUOTEVAR:FGCOLORCSS">' + ar[i].sName + '</font></b></span></a><br><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 += '<hr>'
        }
      }
    return strIDs
    }
    the font colour is specified as font color="NETQUOTEVAR:FGCOLORCSS" you can change this to a named colour, another actinic specified colour or the hex equivalent


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      Thanks a lot, I'll give it a try.

      Kind regards
      Karen
      Kind Regards
      Karen

      Charmed Cards & Crafts

      Comment


        #4
        I haven't got the code you specified in my Act_Primary. Any more suggestions?

        Many thanks

        Karen
        Kind Regards
        Karen

        Charmed Cards & Crafts

        Comment


          #5
          Opps sorry, its the clean layout you have. Open Act_SectionLineSmallText and look for:
          Code:
          <A HREF="NETQUOTEVAR:SECTIONLINK"><span class="actxsmall">NETQUOTEVAR:SECTIONNAME</span></A>
          and add in the <font> tags

          Code:
          <A HREF="NETQUOTEVAR:SECTIONLINK"><span class="actxsmall"><font color="#33FF00">NETQUOTEVAR:SECTIONNAME</font></span></A>
          or you could create a new CSS style and specify that instead


          Bikster
          SellerDeck Designs and Responsive Themes

          Comment


            #6
            Thanks Jont, that did the trick
            Kind Regards
            Karen

            Charmed Cards & Crafts

            Comment


              #7
              I trust you have selected a better a colour than the day-glo green I used in the example


              Bikster
              SellerDeck Designs and Responsive Themes

              Comment

              Working...
              X