Announcement

Collapse
No announcement yet.

Act_Productline layout

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

    Act_Productline layout

    I am trying to modify the layout of this file.
    How can I change the text size - the name/discription of the item is too big and I cannot find where to modify this. I want to rearrange the netquotevars on this page is this okay?

    Also on my primary pages I am using NETQUOTEVAR:NAVBHOME NETQUOTEVAR:NAVBMAIL etc for navigation I would like to change the size of these text buttons. I looked at the css file and the options appear to be small or regular what if small is too small and regular is too big?
    ________
    rolling a joint

    #2
    If you only want to change that instance of the size then you need to look for

    <span class="actregular">NETQUOTEVAR: PRODUCTNAME</span> and
    NETQUOTEVAR: PRODUCTDESCRIPTION

    changing the class="actregular" to say actsmall .. you can also wrap the product description into a similar class if it not already. The actual sizes are specified in actinic.css.

    Be wary about some of the NQV's and their order as from memory some are order dependent but for things such as name, ref, description they can be swapped around with impunity .. take a backup copy first modify one item at a time, save and preview under Actinic and it wil tell you if you have killed the template

    For the navigation if you are using buttons rather than text you will need to actually create new buttons and either use the same file names or specify your own at Design | Options | Navigation


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      The nav 'buttons' such as netquotevar:navbhome are text not buttons again I have not been able to change the size of them other than using what you suggested small or regular but if neither suits?...

      I have looked in the css file and cannot see any sizes it has
      e.g. font-size:x-small which doesnt tell me what size that is like if I could change regular to be font 10 for example this might help me. Where does it say that font size small is size 8 or whatever size it is
      ________
      Buell XB12S

      Comment


        #4
        The sizes of the text for the NAV buttons are coming from Act_NavigationalItem.html

        The sizes of the fonts are declared in the actinic.css so class actsmall may look like:

        .actsmall{
        font-size:small;
        font-weight: bold;
        color:NETQUOTEVAR:FGCOLORCSS;
        }

        this is a more acessible way and allows the fonts to be scaled by the users browser... they are relative to the settings first set by the default browser and primarily then set by the user if they have poor eye sight .. it is a scalable size.

        You can over ride the scaling by declaring a sixed font size eg:

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


        Bikster
        SellerDeck Designs and Responsive Themes

        Comment


          #5
          Okay I'll try that - thanks

          Comment

          Working...
          X