Can't find Hyperlink color - need to change to make easier to see

Discussion in 'CSS' started by marketing, Aug 14, 2010.

  1. #1
    I have a site that runs a wordpress theme...the css file contains the hyperlink color info, I am pretty sure...but I am struggling to find it. can you help?

    site: http: www first shows . com

    put it together....doh!

    Thanks in advance if you can help....I am a moron, I know.
     
    marketing, Aug 14, 2010 IP
  2. RadioBounce

    RadioBounce Banned

    Messages:
    4,171
    Likes Received:
    16
    Best Answers:
    1
    Trophy Points:
    0
    #2
    Go on Wordpress editor and click on your CSS file then press CTRL+F and search for 'a.active' without the quote marks. It should find it.
     
    RadioBounce, Aug 14, 2010 IP
  3. mario212

    mario212 Peon

    Messages:
    107
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Test it a little bit,change color code in CSS and see where is changing on site.
     
    mario212, Aug 14, 2010 IP
  4. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #4
    There are heaps of links on that site! Which ones do you want changed?

    Green content links:
    .post h2 a
    .post .read-more a


    Blue metadata links:
    .narrowcolumn .postmetadata a

    White sidebar links:
    #sidebar ul li ul li a
    #sidebar ul li ul li a:hover
     
    Cash Nebula, Aug 14, 2010 IP
  5. marketing

    marketing Active Member

    Messages:
    967
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    90
    #5
    trying to change the blue hypers in the body of the posts.

    so, I shall search .narrowcolumn .postmetadata a i suppose...
     
    marketing, Aug 14, 2010 IP
  6. marketing

    marketing Active Member

    Messages:
    967
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    90
    #6
    hmmm .narrowcolumn .postmetadata a actually changed the text showing the categories on the little preview area...\

    back to the drawing board...anyone else got any idea?
     
    marketing, Aug 15, 2010 IP
  7. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Ah right, I didn't see anything specific for those links. :confused: Nevermind, adding this will make them like the green links:

    
    .entry a {
       color: #89AE03;
       text-decoration: none;
    }
    Code (markup):
    You can add it anywhere but I would put it before /* Begin Sidebar */ just to keep things organized.
    Change .entry to .narrowcolumn if you also want the comment link to be green.
    Remove text-decoration: none; if you want to keep the underlines.
     
    Last edited: Aug 15, 2010
    Cash Nebula, Aug 15, 2010 IP
    marketing likes this.