Announcement

Collapse
No announcement yet.

Where do I change the variables values?

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

    Where do I change the variables values?

    Looking at the Actinic.css, many of the classes have variables tied to them.
    I've pasted some examples below, with the variables in blue.

    Can anyone tell me where i should be looking in order to alter the value of these variables?


    a.product_section:visited {
    color : <actinic:variable name="VLinkColor" />;
    text-decoration : none;
    }

    a.product_section:link {
    color : <actinic:variable name="LinkColor" />;
    text-decoration : none;
    }

    a.product_section:active {
    color : <actinic:variable name="ALinkColor" />;
    text-decoration : none;
    }

    a.product_section:hover {
    color : <actinic:variable name="HLinkColor" />;
    text-decoration : none;
    }

    #2
    Design | Themes | Advanced Theme Configuration | Color Scheme.

    Kind regards,
    Bruce King
    SellerDeck

    Comment


      #3
      Thanks.

      Is there a simple way of determining which one is which?

      Comment


        #4
        a.product_section:visited - stands for 'Visited Link'
        a.product_section:link - Stands for 'Link'
        a.product_section:active - for 'Active Link'
        a.product_section:hover - for 'Mouse hover Link'

        Kind regards,
        Bruce King
        SellerDeck

        Comment


          #5
          ok - thanks.

          Comment

          Working...
          X