Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Link Color In Table

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #45482
    k_mcminn
    Member

    Hello, everyone! I’m racking my brain here and probably shouldn’t be.

    For the following page:
    [Your text to link here…](http://www.nintendonerds.com/animal-crossing-new-leaf-pictures “Animal Crossing: New Leaf Pictures”)

    …I’m trying to give the links (they’re already underlined) a specific color. I can’t seem to figure out how to class them so the color shows up. I’d like a color for the link hover as well.

    What gives? Is something being overridden?

    Thanks!

    #138489
    TheDoc
    Member

    Your structure looks like this:

    Some Text

    Some more text here

    The actual anchor color is going to be overridden by the h2 color which is `#444`. You’d need to do something like `a h2 { color: pink; }` for your selector to override it.

    #138490
    Paulie_D
    Member

    Try something like

    .dl_sizes a {
    color:xxxxxx;
    }

    #138491
    Paulie_D
    Member

    Ahhh…there’s more than one link per table so you may need to do both.

    #138500
    k_mcminn
    Member

    Thanks for the quick responses!

    I still can’t figure out that second column, even after I changed it from an h2 –> span. Any idea what’s keeping those links from having a hover color of #1D2023?

    #138628
    k_mcminn
    Member

    …just wanted to give this a bump so it doesn’t get buried. :)

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘CSS’ is closed to new topics and replies.