You know you can close a quote tag, right?

(just mentioning it since if you quote something filled with a quote like that, it's chopped out)
Without knowing WHAT the text is, WHERE exactly you want it (above, below, inside?), how it's aligned, it's relationship to the image...
We're supposed to answer how exactly? It could be as simple as
Code:
<div class="productPreview">
<img src="whatever.png" alt="product number" />
Text Here
</div>
or as complex as:
Code:
<div class="productPreview">
<img src="whatever.png" alt="product number" />
<p>big long string of text here</p>
</div>
or even:
Code:
<span class="productPreview">
<img src="whatever.png" alt="product number" />
Text Here<br />
</span>
if you want them to align like inline-level elements would. (since you'd need a inline-level container)... and that's before even TALKING about the CSS, which hinges ENTIRELY on what you want them to look like.
Which you still haven't provided.
Bookmarks