What’s the url to your site?
Peter
I don’t think that’s what OP is asking:
You can (or probably have) put the_excerpt(); between divs, and style it the way you like:
<div class="yourstyle">
<?php the_excerpt(); ?>
</div>
and then in your stylesheet:
.yourstyle {
color: #f00;
}
(if you want it red, that is 😉 ).
In many themes the content of a post is wrapped in a class classed post or entry, or something like that.
Peter
my website is http://www.beinspiredby.com/teen
It would be on the blog page (duh) in the blue box. I’ve tried wrapping it in divs like that and it didn’t work…but I’ll put it back up just so you can see. Thanks for helping
the class name is post-content-excerpt, just so you can find it quicker in the source.
Find this in your stylesheet:
#home-top .post p {
padding:0 0 12px;
}
and add a color:
#home-top .post p {
color:#FFFFFF;
padding:0 0 12px;
}
Peter