how to do text alignment under a picture?

T

Thomas A. Rowe

Insert the picture into a 1 column, 2 row table, then in the second row enter your text.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
T

Tony

:: Insert the picture into a 1 column, 2 row table, then in
:: the second row enter your text.

Thank you, Thomas.

Some of my table cells are screwed up causing some
problems.

Anyone know if there's a tool around that will scan the
HTML and find pictures that are larger than the td
width's and missing/extra/mis-applied tags?

e.g.

<body>
<table><tr><td>
<div>content</div></div></td>
<td width="100">&nbsp;</tr>
</table>
</body>

Tony
 
T

Tony

By the way, using different <table>, <tr>, <td> elements
did not fix the items in question. The <a> tags for some
reason seem to resolve themselves as display: block;
elements.

The page with the problem:

http://www.aquaticcreationsnc.com

I tried the following items to fix the problem, but they
failed as well...

<style type="text/css"><!--
..il {display: inline;}
..c1 {width: 100%; text-align: center;}
--></style>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody><tr>
<td class="c1"><div align="center"><a href="#"><img src="pic1.jpg" ... /></a></div></td>
</tr><tr>
<td class="c1"><a class="il" href="#"><img src="pic2.jpg" ... /></a></td>
</tr><tr>
<!-- fixed links here -->
<td align="center"><a style="display: inline;" href="#"><img src="pic3.jpg" ... /></a></td>
....

Two browsers (ie and firefox) were used in the testing,
both displaying the same behaviours. For some reason
all <a> elements are being converted to display: block
elements (something in the stylesheet that I'm missing).

Tony
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top