• trying to make links and category on side bar white.
    when i do though it changes post titles in the main area white too. And they dont show up in the post very well.
    that happened when i changed this to white in the text elements section of the code.

    a:active { color:#303030; text-decoration: underline; cursor:pointer; }

    I also found this under side bar

    #sidebar .box ul {
    font-size:.92em;
    line-height:2;
    }

    #sidebar .box ul ul {
    font-size:1em;
    margin-left:1em;
    }

    figured i could just add the color, like this.

    #sidebar .box ul {
    font-size:.92em;
    line-height:2;
    color:#FFFFFF;

    }

    #sidebar .box ul ul {
    font-size:1em;
    margin-left:1em;
    color:#FFFFFF;
    }

    nothing happened when i did this though.
    heres the site if you want to see what i mean (i have them back to black now)
    http://www.tawdryproductions.com/column

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try adding:

    .text a {color:#fff;}

    to the bottom of style.css.

    Hi

    You need to add a new line to your stylesheet
    #sidebar li a { color: #fff; }

    If you want to change the color of the headers in the sidebar, add the color to this existing block style.css (line 328)

    #sidebar h3 {
      line-height:1.8;
    }

    hi !

    to change text color in sidebar:
    #sidebar li a { color: #fff; }
    worked very nicely for me

    but to change color of header in sidebar, it is h2 not h3!
    for ex:

    #sidebar h2 {
    	font-family: 'Lucida Grande', Verdana, Sans-Serif;
    	font-size: 1.2em;
    	color: #FF3300
    	}
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘side bar text color.’ is closed to new replies.