formatC: wrote:
These are two different thing. I am putting ittogether for convenience.
<font color=green>
For whose convenience? None of these are PHP questions, btw...
</font>
First thing is this property I have to set (I think !!). I am not sure where.
Whats happening is that when I minimize a browser, the images get cluttered. Lke, if I have three images in one line on the top of the browser, then when I minimize the browser the images fall one belowthe other inthe smaller browser. How do I correct this.
<font color=green>
Use the "NOWRAP" directive on the table cell containing the images:
</font><font color=blue>
<TABLE>
<TR>
<TD NOWRAP>
<IMG SRC="image1.jpeg"><IMG SRC="image2.jpeg"><IMG SRC="image3.jpeg">
</TD>
</TR>
</TABLE>
</font>
Second question, how do I get a iamge to span two rows. I have to put up 4 images. The first image will san 2 rows, the second and thrid will span one row (one below the other) and the fourth will span 2 rows again. All tha images will align in the same line.
<font color=green>
Use Adobe's "ImageReady" to slice up your graphics and generate the HTML to put them back together in a table or, if we must do this manually:
</font>
<font color=blue>
<TABLE>
<TABLE>
<TR>
<TD ROWSPAN="2">Image One</TD>
<TD>Image Two</TD>
<TD ROWSPAN="2">Image Four</TD>
</TR>
<TR>
<TD>Image Three</TD>
</TR>
</TABLE>
</font>
Third question is regardig mouse pop-ups when moved over a link. When I moe the mouse over a link, can I get it to display a list (like one below the other). Better still will be to display an active list. That is when I move the mouse over a link, then a list os links are displayed on eblow the other.
<font color=green>
For this, you will need to search the javascript and CSS sites for <I>MANY</I> free examples and downloads.
</font>
Thanks.
<font color=green>
Your Welcome
-- Rich
</font>