Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

image resize, mouse pop-up 1

Status
Not open for further replies.

sonun

IS-IT--Management
Dec 26, 2001
384
US
These are two different thing. I am putting ittogether for convenience.

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.

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.

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.

Thanks.
 
1) If you place the three images in a table then they will not wrap one below the other when the page size is reduced.

i.e.
Code:
<TABLE COLS=3 WIDTH=600 CELLSPACING=0 CELLPADDING=0 BORDER=0>
<TR>
  <TD WIDTH=200><IMG SRC=&quot;image1.jpg&quot;></TD>
  <TD WIDTH=200><IMG SRC=&quot;image1.jpg&quot;></TD>
  <TD WIDTH=200><IMG SRC=&quot;image1.jpg&quot;></TD>
</TR>
</TABLE>

2) I 'think' this is what you are after - let me know if not

i.e.
Code:
<TABLE COLS=3 WIDTH=600 CELLSPACING=0 CELLPADDING=0 BORDER=0>
<TR>
  <TD ROWSPAN=2><IMG SRC=&quot;image1.jpg&quot;></TD>
  <TD><IMG SRC=&quot;image1.jpg&quot;></TD>
  <TD ROWSPAN=2><IMG SRC=&quot;image1.jpg&quot;></TD>
</TR>
<TR>
  <TD><IMG SRC=&quot;image1.jpg&quot;></TD>
</TR>
</TABLE>


Tony
reddot.gif WIDTH=300 HEIGHT=2 VSPACE=3

 
Thanks, thats exactly what I want.
Just one more request.
The iamges currently occupy more than onebreadth size of the page now necessitatin g the use of a scroll bar. Is it possible that they occupy the entire bredth of the page without a scroll bar appering below. I tried changing widhts of individual images, but they appear different in different browsers.
Thanks again.
 
I mean I can do it, but not on all browsers !!
 
Ok, I got the image resize part fixed -- the first two questions.
But I am still looking for an solution to my third problem. I serached for some code, but couldnt find any.
Basically what I want is in this site. Go to this site and take your mouse over a link. It displaya drop down list of links.
Please advise. Tutorials would bre great too !!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top