Announcement

Collapse
No announcement yet.

Css links

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

    Css links

    Has anyone worked out how to get Css colours working properly.

    In the attached image CSS defines

    text green
    links red
    visited links red
    active links green
    hover green

    so how come my javascript menu has green text with red underline, as does the parent links, but PartySupplies section link is all red

    I have seen this underline effect on other peoples sites so its not me!!
    Attached Files

    #2
    text green
    links red
    visited links red
    active links green
    hover green
    hi jo, is it possibly red because it is a link you have visited, the above suggests when a link has been visited, it should be red...? or as happens, did i get your question wrong ?

    steve

    Comment


      #3
      Hi steve

      What I am moaning about is the fact that the underline is red whilst the link text is green.

      I would expect a link whether is is unvisited or visited to all be the same colour, ie the words and the underline the same colour

      Is that clearer, I fear not

      Comment


        #4
        here is my css

        a:link{
        color: Red;
        font-size:x-small;
        text-decoration:underline;
        }

        a:visited{
        color: Red;
        font-size:x-small;
        text-decoration: underline;
        }

        the javascript menu is green, with red underline

        Comment


          #5
          cracked it!

          I completely rewrote my css file

          I think it was removing the netquotevar colour with the act-xxsmall tags that did it

          Comment

          Working...
          X