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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Splicing images... In a table

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hi.

I've been having problems with my navbar...

It's built upon a bunch of different images, all spliced to form an options menu, right?

But every so often, after editing one of the adjacent columns (within the table), the images drift apart, leaving ugly white spaces in between.

It's really annoying. Is there any easy way to fix it?

If you still don't understand, check this out:

Thanks!
-NeXius
 
Hey, me again

I just noticed it works fine in IE...

but that leaves the question WHy not in Netscape?
 
It looks OK to me in both browsers. Your code looks to be in good order. Make sure that you always keep your <td><img></td> in the same line or in this structure:

<td
><img
></td>

so that the newlines don't get counted as spaces.

Also, make sure that your other content is in a seperate table from the menu or you my end up stretching the menu cells if the content of the other parts of the table are larger. For instance, you could do this:

<table>
<tr>
<td>
<table>
<tr>
<td>
menu here
</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td>
other content here
</td>
</tr>
</table>
</td>
</tr>
</table>
Sincerely,

Tom Anderson
CEO, Order amid Chaos, Inc.
 
That means rewriting like everything

I have to know:

there isn't any way to make one column independent of the other?

Thanks !
-NeXius
 
Only if it's in another table. Sorry. Is it really that hard to encapsulate your cell contents in a table? You don't have to rewrite everything... just insert a table around your menu.
Sincerely,

Tom Anderson
CEO, Order amid Chaos, Inc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top