Announcement

Collapse
No announcement yet.

Netquotevar

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

    Netquotevar

    I took out the toplevelsection and put in the netquotevar's individually such as NETQUOTEVAR:NAVBHOME NETQUOTEVAR:NAVBMAIL. I cannot find how to increase the size of these?
    ________
    Suzuki T500

    #2
    Have a look at Act_NavigationItem.html in your site folder. You will probably find a span tag that invokes a class such as actsmall - change this to (actregular ?) one of the other font size classes specified in your actinic.css file.
    Bill
    www.egyptianwonders.co.uk
    Text directoryWorldwide Actinic(TM) shops
    BC Ness Solutions Support services, custom software
    Registered Microsoft™ Partner (ISV)
    VoIP UK: 0131 208 0605
    Located: Alexandria, EGYPT

    Comment


      #3
      Thanks for that.
      It is a bit too big though - I had a look at the css file can I overwrite this with font sizes like 12. It just lists small, regular and large but no actual size. Also It only increases the size on the act_primary page.
      ________
      Harley-Davidson FXSTB

      Comment


        #4
        Lee,

        If you take a look at actinic.css you should see the following if you scroll down a bit
        .actlarger{
        font-size: larger;
        color:NETQUOTEVAR:FGCOLORCSS;
        }

        .actsmaller{
        font-size: smaller;
        color:NETQUOTEVAR:FGCOLORCSS;
        }

        .actxxsmall{
        font-size:9px;
        color:NETQUOTEVAR:FGCOLORCSS;
        }

        .actxsmall{
        font-size:10px;
        color:NETQUOTEVAR:FGCOLORCSS;
        }

        .actsmall{
        font-size:10px;
        color:NETQUOTEVAR:FGCOLORCSS;
        }

        .actregular{
        font-size:12px;
        color:NETQUOTEVAR:FGCOLORCSS;
        }

        .actlarge{
        font-size:14px;
        color:NETQUOTEVAR:FGCOLORCSS;
        }

        .actxlarge{
        font-size:16px;
        color:NETQUOTEVAR:FGCOLORCSS;
        }

        .actxxlarge{
        font-size:18px;
        color:NETQUOTEVAR:FGCOLORCSS;
        }
        You can use any one of these to get the size you require.

        Kind regards,
        Bruce King
        SellerDeck

        Comment

        Working...
        X