• Hello, Is there anyway to change the sidebar link colors in the stylesheet? Ive looked everywhere but I can’t find it. My blog is here: dylanbabbs.com

    Thanks alot

Viewing 2 replies - 1 through 2 (of 2 total)
  • as far as i can see, these are the styles that control the link color in the sidebar
    (in style.css)

    .art-blockcontent-body a:link,
    .art-blockcontent-body li a:link
    {
      color: #595959;
      text-decoration: underline;
    }
    
    .art-blockcontent-body a:visited, .art-blockcontent-body a.visited,
    .art-blockcontent-body li a:visited, .art-blockcontent-body li a.visited
    {
      color: #595959;
    
    }
    
    .art-blockcontent-body a:hover, .art-blockcontent-body a.hover,
    .art-blockcontent-body li a:hover, .art-blockcontent-body li a.hover
    {
      color: #757575;
    
      text-decoration: none;
    }
    Thread Starter dbabbs

    (@dbabbs)

    Yes! Thankyou very much. One more thing: is there anyway to change the title post colors?

    Thanks

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