• I assume it’s in the sytle sheets, but I tried playing around with a few things, and I can’t change the color.

    Currently, I think the font is 999 and I’d like to change it to 000 to make it more visable.

    I cut and paste what I think is the relevant code below. Please help me out and tell me if I’m looking in the wrong place.

    Thanks!
    Ken

    form input.text, form textarea{
    	width:96%;
    	border:1px #DDD solid;
    	color:#999;
    	padding: 4px 5px;
    	font:12px 'lucida sans','lucida sans unicode','gill sans','verdana',sans-serif;
    	background-color: #FFF;
    	margin-bottom: 15px;
    	}
    
    form input.text:hover, form textarea:hover{
    	border:1px #CCC solid;
    	}
    
    form input.text:focus, form textarea:focus{
    	border:1px #999 solid;
    	color:#666;
    	}
    
    form input.button{
    	margin-right:8px;
    	padding:3px 5px;
    	font:10px Arial,san-serif;
    	}
    
    * html form input.text,
    
    * html form textarea{
    	border-color:#999;
    	color:#999;
    	}
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Waterproof,

    Your post are published is a div class=entry p

    So in your theme style.css file put this code

    .entry p {
      color: #000;
    }
    Thread Starter waterproof151

    (@waterproof151)

    Thanks laplix.

    That didn’t work, but I changed to body and it worked.

    body {
    	font: 400 0.8em 'trebuchet ms',arial,sans-serif;
    	color: #000;
    	background: #FFF url('images/mainbg.jpg') repeat-y top center;
    	min-height: 100%;
    	}
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I change the color of the text in the posts?’ is closed to new replies.