Announcement

Collapse
No announcement yet.

bullet colour change

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

    bullet colour change

    Hi,

    Quick help please, i want to change the colour of the red bullet next to the nav links.

    But i cannot for the life of me find where to change it?
    Reverse Osmosis Water Filters

    #2
    Look in your actinic.css and you will see an entry 'ul.products' - change the color there.

    Comment


      #3
      ul.products {
      line-height: normal;
      padding: 0px 0px 0px 1px;
      margin: 3px 0px 4px 15px;
      font-size: <actinic:variable name="StandardFontSize" />;
      color: <actinic:variable name="RequiredColor" />;
      }

      Do i just change the "requiredcolor" to my #000000 colour ?
      Reverse Osmosis Water Filters

      Comment


        #4
        You can. So if you wanted Red then you would have:

        ul.products {
        line-height: normal;
        padding: 0px 0px 0px 1px;
        margin: 3px 0px 4px 15px;
        font-size: <actinic:variable name="StandardFontSize" />;
        color: #FF0000;
        }

        Comment


          #5
          thankyou very much!
          Reverse Osmosis Water Filters

          Comment

          Working...
          X