Forums

[resolved] CSS links will not change no matter what code I use (3 posts)

  1. blankdeluxe
    Member
    Posted 7 months ago #

    Im trying to set up the link colors and styles for my custom theme and no matter what I set my links to they will not display the styles I'm looking for. Right now I have my post titles wrapped in a div named title and I have the code below in the CSS but nothing displays. Here is the link to the site. http://blankdeluxe.com/blog/ Is there something special I have to do to get the default blue links tho change to the proper style?

    .title a:link {
    text-decoration:none;color:#000000;}
    .title a:vistited {
    text-decoration:none;color:#000000;}
    .title a:hover {
    text-decoration:line-through;color:#ccc;}
    .title a:active {
    text-decoration:line-through;color:#ccc;}

  2. alchymyth
    The Sweeper
    Posted 7 months ago #

    your stylesheet is broken through a missing closing bracket } in at least one place (after the bold;):

    .entry {
    font-family:Helvetica, Arial, sans-serif;
    text-align:left;
    letter-spacing:-1px;
    line-height:95%;
    font-weight:bold;
    
    .inline {
    display:inline;}
  3. blankdeluxe
    Member
    Posted 7 months ago #

    Perfect, that was it. Stupid mistake...Thank you!

Reply

You must log in to post.

About this Topic