Hi all,
I’m creating my second site with ExpressionEngine and I’m having a problem getting my css to render on the following page: http://www.maleintellect.com/EE/index.php?/reviews
I created the site without EE and you can see how the reviews on the page are supposed to look here: http://maleintellect.com/pressreviews.html
Here is the code I’m using:
<div id="reviewswrapper">
{exp:channel:entries channel="reviews" limit="12"}
{review_logo}
{review_text}
<hr>
{/exp:channel:entries}
</div>Here is the css:
#reviewswrapper {
width: 840px;
margin: 0 auto;
padding: 0;
font-family: "Times New Roman", Times, serif;
font-size: 16px;
line-height: 19px;
}
#reviewswrapper p.review {
font-weight: bold;
padding: 30px 0;
width: 90%;
text-align: left;
}
p.review img {
float: left;
margin: -5px 15px 0 0;
}I can’t see what the problem is. Any help would be greatly appreciated.