Closed
Bug 2557
Opened 26 years ago
Closed 26 years ago
Images in table in frame display incorrectly at freethemes.com
Categories
(Core :: Layout, defect, P3)
Tracking
()
VERIFIED
FIXED
M6
People
(Reporter: cpratt, Assigned: buster)
References
()
Details
(This is using the Jan-21-99 build.)
The top frame on the page, which contains the file topbar.htm, should have
Windows-style buttons contained entirely within the frame. However, they instead
draw too far down within the frame, and therefore are truncated (the bottom half
or so of the buttons is simply not drawn as it would extend into the other frame
on the page). However, the newend.gif image does display correctly - possibly
because it's the only image not in a table. The other images - top1.gif through
top7.gif - are the ones that are truncated; they are located within a table.
Here's some of the source code for the table to give you an idea; presuambly,
something about this is causing seamonkey to put the top of the image too far
down within the frame, truncating it.
<table border="0" width="80%" height="1" cellspacing="0" cellpadding="0">
<tr>
<td width="622" height="1" valign="top"><a href="left35.htm"
target="contents"
onMouseOver="tabOn("5")" onMouseOut="tabOff("5")"
alt="About
Us"><IMG name="ft5" src="images/top5.gif" border="0" hspace="0" vspace="0"
alt="Click here to begin!" align="top""61""26" WIDTH=61 HEIGHT=26></a>
<a
href="http://advertise.tucows.com"
target="moo" onMouseOver="tabOn("1")"
onMouseOut="tabOff("1")"
alt="Advertising"><IMG name="ft1" src="images/top1.gif" border="0"
hspace="0"
vspace="0" alt="Advertising" align="top""81""28" WIDTH=81 HEIGHT=28></a><a
href="contact.htm"
target="main" onMouseOver="tabOn("2")"
onMouseOut="tabOff("2")"
alt="About Us"><IMG name="ft2" src="images/top2.gif" border="0" hspace="0"
vspace="0"
alt="Contact us" align="top""81""28" WIDTH=81 HEIGHT=28></a><a href="search.htm"
target="main"
onMouseOver="tabOn("3")" onMouseOut="tabOff("3")"
alt="About
Us"><IMG name="ft3" src="images/top3.gif" border="0" hspace="0" vspace="0"
alt="Search Freethemes.com" align="top""65""28" WIDTH=65 HEIGHT=28></a><a
href="indx.htm"
target="main" onMouseOver="tabOn("4")"
onMouseOut="tabOff("4")"
alt="About Us"><IMG name="ft4" src="images/top4.gif" border="0" hspace="0"
vspace="0"
alt="Questions" align="top""65""28" WIDTH=65 HEIGHT=28></a><a href="gold30.htm"
target="main" onMouseOver="tabOn("7")"
onMouseOut="tabOff("7")"
alt="About Us"><IMG name="ft7" src="images/top7.gif" border="0" hspace="0"
vspace="0"
alt="Downloads" align="top" WIDTH=80 HEIGHT=28></a> </td>
</tr>
</table>
Comment 2•26 years ago
|
||
giving all of garret's bugs to don. Don, if you're the wrong person, a thousand
apologies.
Re-assigned to rickg@netscape.com.
Rick, any idea who should get this beast? Sounds like some kind of layout
problem ...
Comment 4•26 years ago
|
||
This is "caused" by the ANCHOR tag wrapped around the IMG. Test case:
==============================
<html><head><base href="http://losangeles.freethemes.com/"></head><body>
<!-- this one should be aligned to top, but ... -->
<table border>
<tr><td valign="top">
<a href="">
<IMG src="images/top5.gif" align="top" WIDTH=61 HEIGHT=26></a>
</td></tr>
</table>
<!-- this one is OK ... remove the <A> and it aligns to top -->
<table border>
<tr><td valign="top">
<IMG src="images/top5.gif" align="top" WIDTH=61 HEIGHT=26>
</td></tr>
</table>
</body></html>
==============================
Tested win95 Feb16 build non-debug. (This is pretty much a duplicate
of #3072.)
Kipp -- I think this one is yours or ChrisK's. Please take a look. Low priority.
Comment 6•26 years ago
|
||
per leger, assigning QA contacts to all open bugs without QA contacts according
to list at http://bugzilla.mozilla.org/describecomponents.cgi?product=Browser
The page looks fine now; it was probably fixed when the other vertical alignment
bugs were fixed (top aligned was not handled properly before)
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 8•26 years ago
|
||
Fixed in March 23rd Build.
You need to log in
before you can comment on or make changes to this bug.
Description
•