Viewing 3 replies - 1 through 3 (of 3 total)
  • You’re CSS rule looks like:

    .entry p a, blockquote a {
    border-bottom:1px dotted #999999;
    color:#000000;
    text-decoration:none;
    }

    The links that aren’t underlining are not contained within a paragraph, so the above rule isn’t applying to them.

    Thread Starter nathanperkel

    (@nathanperkel)

    But all the other links that are identical work just fine..
    this is set up just the same..
    or am i missing something?
    how would I go about fixing this?

    the ‘more’ tag of that particular post was inserted between two images in a span, and not in a paragraph – therefore the link style does not get applied (as @skylar_inmotion already pointed out).

    you could extend the link style to a.more-link– see following styles:

    .entry p a, blockquote a, a.more-link {
       color: #000000;
       text-decoration:none;
       border-bottom: 1px dotted;
       border-bottom-color:  #999;
    	}
    
    .entry p a:hover, blockquote a:hover, a.more-link:hover {
       color: #cccccc;
       text-decoration:none;
       border-bottom: 1px dotted;
       border-bottom-color: #999;
    	}

    hope, you see the difference, and are able to edit the style.css of your theme accordingly.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Link Issue’ is closed to new replies.