Forum Moderators: not2easy
sample code:
CSS
#pinkfield {
width: 100%;
height:95px;
background-color: #936;
text-align:center;
padding-top:10px;
padding-bottom:10px;
}
#leftpic {
float:left;
margin:0 15px;
}
p.quote{
font-family:courier, "courier new", serif;
font-size:14px;
font-weight:900;
color:#FFF;
letter-spacing:1px;
margin:0;
padding:0;
}
#rightpic {
float:right;
margin:0 15px;
}
HTML
<div id="pinkfield">
<img id="leftpic" src="#" width="205" height="75">
<p class="quote">
Text...centered in the<br />
middle of the page,<br />
floated images on both sides.
</p>
<img id="rightpic" src="#" width="105" height="75">
</div>
<div id="pinkfield">
<img id="leftpic" src="#" width="205" height="75">
<img id="rightpic" src="#" width="105" height="75">
<p class="quote">
Text...centered in the<br />
middle of the page,<br />
floated images on both sides.
</p>
</div>