I've read through a couple threads to try to find the answer before posting & found the align center html but it just won't work. So far this is what I have:
Using CSS I make a pic display div ( ie. The division is as wide as the pic )I write the image tag followed by a line break I then put the text wrapped in a p tag
Code:
The CSS
div.pic {width:400px;text-align:center;position:relative;float:left;}
p {text-align:center;}
The HTML
<div class="pic">
<img src="" alt="" />
<br />
<p>Centered under pic text</p>
</div>
Hope that helps and you can change the width, positioning, and alignment to suit your needs.
__________________
Check out my Please login or register to view this content. Registration is FREE website!
I've read through a couple threads to try to find the answer before posting & found the align center html but it just won't work. So far this is what I have: