• Hey I have settings in the CSS for visited and hover however this applies to the entire page.

    How can I make separate visited and hover colors for just the .storytitles ?

    the body code looks like this
    a {color: #ffffff; text-decoration:none;}
    a:visited {color: #999999; }
    a:hover {color: #OOCCFF; }

    I tried to cop this and renamed the value a to b and then changed .storytitles a to storytitle b…but did not work. It was a total guess

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Totally wrong guess…
    Start here: http://www.w3schools.com/css/default.asp

    You have already .storytitle defined:
    .storytitle a {
    font-size: 20px;
    letter-spacing: -0.05em;
    color: #fff;
    font-weight: normal;
    text-decoration: none;
    }

    So add whetever you want:
    .storytitle a:hover {
    blah blah
    }

    Thread Starter dijhili

    (@dijhili)

    thank you, I will try that. As you can tell I am new to CSS but an an avid Flash programmer.

    thanks 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘changing .storytitle a’ is closed to new replies.