Hello+
Thank you in advance for your guidance...
I am using CSS to display thumbnails in a 'grid' w/out using tables (thanks to all who advised on that!), my issue is the title is off center of the thumbnail. I will put the code below:
CSS:
Code:
li.title {
display: block;
list-style: none;
text-align: center;
color:#FFFFFF;
font-family: Arial, Helvetica, sans-serif;
font: 14px;
}
XHTML:
Code:
<div class="pic ls"><a href="projects1.html" class="tn"><img src="images/thumbnails/Alaska/alaska00001.png" alt="Two Glaciers Picture" width="116" height="91" border="0"></a></div>
<ul>
<li class="title">Two Glaciers</li>
</ul>
I am under the impression that the
text-align: center; is supposed to make the title center under the thumbnail, but it does not appear to be that way when I preview in IE8 & FF3.5.3
Thank you for any guidance available!