HighDots Forums  

spacing gaps, have tried everything...

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss spacing gaps, have tried everything... in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
dw0129j
 
Posts: n/a

Default spacing gaps, have tried everything... - 08-27-2004 , 04:39 PM






I've spent hours trying to solve this, hopefully someone can help. I can't
seem to ride my page of a gap underneath my image. I've tried everything,
padding and spacing are set to 0...Here's the link to see what I'm talking
about.
Thanks for any help.
http://www.sblifeskills.com

--JM


Reply With Quote
  #2  
Old   
TC2112
 
Posts: n/a

Default Re: spacing gaps, have tried everything... - 08-27-2004 , 05:04 PM






Hello,
The image in the bottom left is 50px high, but the table it is in, as well as
the td, have height set at 53.
Remove those heights from the code. The table will shrink to the height of the
image, 50px, and you'll lose the space.
You can also remove the width of the cell the table is in, as well as the
alignments, and set the next cell to a width of 100%. That will always push the
cell the image is in to the left edge. Just makes for shorter code.
Change this:
<table width="100%" height="53" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="57" height="53" nowrap><div align="left"><img
src="/nav/curv_bl.gif" width="53" height="50" align="bottom"></td>
<td width="763" nowrap><div align="center"><font face="Georgia, Times
New Roman, Times, serif">Patients &nbsp;| &nbsp;Professionals &nbsp;|
&nbsp;About
Us &nbsp;| &nbsp;Contact &nbsp;| &nbsp;Home</font></div></td>
TO this:
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="curv_bl.gif" width="53" height="50"></td>
<td width="100%" nowrap><div align="center"><font face="Georgia, Times
New Roman, Times, serif">Patients &nbsp;| &nbsp;Professionals &nbsp;|
&nbsp;About
Us &nbsp;| &nbsp;Contact &nbsp;| &nbsp;Home</font></div></td>
Take care


Reply With Quote
  #3  
Old   
dw0129j
 
Posts: n/a

Default Re: spacing gaps, have tried everything... - 08-27-2004 , 05:35 PM



Thanks for your help...problem solved! I appreciate that immensely.
--JM

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.