Does this help?
Code:
<div>
<img src="1.jpg" style="float:left;"/>
<p>here goes text which need to be in middle vertically</p>
<img src="2.jpg" style="float:right;"/>
<div style="clear:both;">
</div>
</div>
What you need is vertical-align:middle; but it is difficult to do.
This page might help:
http://www.student.oulu.fi/~laurirai/www/css/middle/
You can also search google for more information.
The easiest way I have found to do this is to use a table. In a <td> vertical-align usually works. It's not the best way to make a page, but it's the easiest way that I know to do what you are asking for. Someone else may have a better answer.
Bookmarks