Announcement

Collapse
No announcement yet.

Need additional link colours in CSS

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

    Need additional link colours in CSS

    I am using CleanLayout05

    The Right side I want White, (no Problem).
    The Left side I want black, (no Problem).
    The Text links on the Right side I want Blue, (no Problem
    The Text links on the Left side to the Sections, I want White, (PROBLEM).

    I have added a new style set for white to the Actinic.css stylesheet.
    a.white:link
    a.white:visited
    a.white:hover
    a.white:active

    Whatever I try to do, attaching the style to different variables or tags, it does not work, it ALWAYS defaults to BLUE.
    Regardless of the values in the stylesheet for both default and white links.
    Sorry, but I haven't got a URL to look at currently.
    j

    #2
    The way you have it written, the css will apply to <a href= tags which are members of pseudo class white i.e <a class="white" href=

    if you change the css to .white.a:link etc then apply class="white"to the container (table/div/whatever is holding the left content) it should work the way you want.
    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

    Working...
    X