Forums

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

Home Forums CSS Help with Link Color issue

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

    Hey everyone,

    I am looking to change the color of the 4 object titles (H3) that are in my homepage page content. I would like to make them darker so that when hovered they are still visable. As of right now they go white because that is that I want the rest of my links to do. Any help would be great

    site: quigleycontracting.squarespace.com

    #92370
    chrisburton
    Participant

    @goalieman34

    h3 a:hover {color: #333;}
    #92371
    goalieman34
    Member

    Thanks, that worked perfect. One last quick question how would i change the starting color its too light of a grey.

    #92372
    chrisburton
    Participant

    @goalieman34

    h3 a {color: #(insert hex code here);}

    Example:

    h3 a {color: #555;}

    If you wanted to change ALL H3 tags.

    h3, h3 a {color: #555;}
    #92373
    goalieman34
    Member

    ok, hmm for some reason the second part didnt work… Any other suggestions?

    This is what i have so far:

    h3 a:hover {color: #333;}
    h3 {color: #555;}

    #92374
    chrisburton
    Participant

    @goalieman34 Check above again.

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