473,472 Members | 2,139 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Help with unwanted space

Hi,

The site I've just created, when tested on a windows PC has an unwanted
white space (about 2-4 pixels high) in between two tables. I would like
there to be zero space there. Here is the test site:

http://aem.cornell.edu/farmlink/

The line goes all the way across the page and it's where the NYFarmlink
Logo is, the two hands shaking, it goes right through that graphic and
then all the way across. It's right in between two tables.

I've had this same problem before but it was so long ago I can't
rememeber the fix. Assigning zero margins or something like that.
ps. Please don't blast me for using tables to lay out a page, I'm
learning, and getting better at learning CSS, but in the meantime these
websites still need to be finished.

Thanks for any help.

Steve
Jul 20 '05 #1
6 3152

"Steve K" <sm***@cornell.edu> wrote in message
news:sm*************************@newsstand.cit.cor nell.edu...
Hi,

The site I've just created, when tested on a windows PC has an unwanted
white space (about 2-4 pixels high) in between two tables. I would like
there to be zero space there. Here is the test site:

http://aem.cornell.edu/farmlink/


Take out the <br> between tables

-Karl
Jul 20 '05 #2
In article <c6**********@ngspool-d02.news.aol.com>, "Karl Groves"
<ka**@NOSPAMkarlcore.com> wrote:
"Steve K" <sm***@cornell.edu> wrote in message
news:sm*************************@newsstand.cit.cor nell.edu...
Hi,

The site I've just created, when tested on a windows PC has an unwanted
white space (about 2-4 pixels high) in between two tables. I would like
there to be zero space there. Here is the test site:

http://aem.cornell.edu/farmlink/


Take out the <br> between tables

-Karl


Thanks, but there isn't one there.

There is a <br> further down the page in between two tables, but that
was intentional. The white space I'm talking about isn't caused by a
<br>.

This site looks great on a mac, IE 5, but on a PC IE 5 the line shows up.
Jul 20 '05 #3
Op Wed, 21 Apr 2004 14:41:36 -0400, schreef Steve K:
In article <c6**********@ngspool-d02.news.aol.com>, "Karl Groves"
<ka**@NOSPAMkarlcore.com> wrote:
"Steve K" <sm***@cornell.edu> wrote in message
news:sm*************************@newsstand.cit.cor nell.edu...
> Hi,
>
> The site I've just created, when tested on a windows PC has an
> unwanted white space (about 2-4 pixels high) in between two tables. I
> would like there to be zero space there. Here is the test site:
>
> http://aem.cornell.edu/farmlink/
>
> Take out the <br> between tables

Thanks, but there isn't one there.

There is a <br> further down the page in between two tables, but that
was intentional. The white space I'm talking about isn't caused by a
<br>.


huh? what about this code snippet?

<table style="margin: 0;" width="100%" cellspacing="0" cellpadding="0" >
<tr> <td background="art/new_top_bottom.jpg"
height="184">&nbsp;</td> </tr>
</table>
<br>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <td class="three" style="border-right: 1px solid #cccccc;"
bgcolor="#333333" width="20%"><a href="upcoming.htm">Upcoming

There's a <br> there that separates the new_top_bottom.jpg image
containing table from the menubar beneath it. If that's not the whitespace
you want removed, which one do you want removed?

Vincent

--
http://lilly.csoft.net/~vdebaere/
http://otlet.sourceforge.net/

Jul 20 '05 #4


Steve K wrote:
Hi,

The site I've just created, when tested on a windows PC has an unwanted
white space (about 2-4 pixels high) in between two tables. I would like
there to be zero space there. Here is the test site:

http://aem.cornell.edu/farmlink/

The line goes all the way across the page and it's where the NYFarmlink
Logo is, the two hands shaking, it goes right through that graphic and
then all the way across. It's right in between two tables.


Steve,

I've noticed that IE can be persnickety with placement of tags. Perhaps
I'm wrong though. I moved the closing </div> tag onto the end of the
line that it is closing and the space went away. Dont' just cut and
paste this section unless you replace the path to your images to the
/art directory.

Patrick
<table style="margin: 0;" width="100%" border="0" cellspacing="0"
cellpadding="0" >
<tr>
<td width="210" style="background-image:
url(new_top_left_background.gif); background-repeat: no-repeat;"><img
src="art/new_top_clear.gif" width="210" height="3"></td>
<td background="new_top_background.gif">
<div align="right"><img style="padding-right: 6px;"
src="art/new_top_fluid.gif" width="596" height="109" usemap="#Map3"
border="0"></div> <<<<----------------HERE----
</td>
</tr>
</table>
<table style="margin: 0;" width="100%" cellspacing="0" cellpadding="0"
border="0">
<tr>
<td background="new_top_bottom.jpg" height="184">&nbsp;</td>
</tr>
</table>

--
Patrick A. Smith
Assistant System Administrator
Ocean Circulation Group – USF - College of Marine Science
http://ocg6.marine.usf.edu Phone: 727 553-3334
Jul 20 '05 #5
In article <c6**********@news1.usf.edu>, Patrick
<ps****@marine.usf.edu> wrote:
Steve K wrote:
Hi,

The site I've just created, when tested on a windows PC has an unwanted
white space (about 2-4 pixels high) in between two tables. I would like
there to be zero space there. Here is the test site:

http://aem.cornell.edu/farmlink/

The line goes all the way across the page and it's where the NYFarmlink
Logo is, the two hands shaking, it goes right through that graphic and
then all the way across. It's right in between two tables.


Steve,

I've noticed that IE can be persnickety with placement of tags. Perhaps
I'm wrong though. I moved the closing </div> tag onto the end of the
line that it is closing and the space went away. Dont' just cut and
paste this section unless you replace the path to your images to the
/art directory.

Patrick
<table style="margin: 0;" width="100%" border="0" cellspacing="0"
cellpadding="0" >
<tr>
<td width="210" style="background-image:
url(new_top_left_background.gif); background-repeat: no-repeat;"><img
src="art/new_top_clear.gif" width="210" height="3"></td>
<td background="new_top_background.gif">
<div align="right"><img style="padding-right: 6px;"
src="art/new_top_fluid.gif" width="596" height="109" usemap="#Map3"
border="0"></div> <<<<----------------HERE----
</td>
</tr>
</table>
<table style="margin: 0;" width="100%" cellspacing="0" cellpadding="0"
border="0">
<tr>
<td background="new_top_bottom.jpg" height="184">&nbsp;</td>
</tr>
</table>


Thank you VERY much! That did work. This newsgroup is priceless.
Jul 20 '05 #6


Steve K wrote:
In article <c6**********@news1.usf.edu>, Patrick
<ps****@marine.usf.edu> wrote:

Steve K wrote:

Hi,

The site I've just created, when tested on a windows PC has an unwanted
white space (about 2-4 pixels high) in between two tables. I would like
there to be zero space there. Here is the test site:

http://aem.cornell.edu/farmlink/

The line goes all the way across the page and it's where the NYFarmlink
Logo is, the two hands shaking, it goes right through that graphic and
then all the way across. It's right in between two tables.


Steve,

I've noticed that IE can be persnickety with placement of tags. Perhaps
I'm wrong though. I moved the closing </div> tag onto the end of the
line that it is closing and the space went away. Dont' just cut and
paste this section unless you replace the path to your images to the
/art directory.

Patrick
<table style="margin: 0;" width="100%" border="0" cellspacing="0"
cellpadding="0" >
<tr>
<td width="210" style="background-image:
url(new_top_left_background.gif); background-repeat: no-repeat;"><img
src="art/new_top_clear.gif" width="210" height="3"></td>
<td background="new_top_background.gif">
<div align="right"><img style="padding-right: 6px;"
src="art/new_top_fluid.gif" width="596" height="109" usemap="#Map3"
border="0"></div> <<<<----------------HERE----
</td>
</tr>
</table>
<table style="margin: 0;" width="100%" cellspacing="0" cellpadding="0"
border="0">
<tr>
<td background="new_top_bottom.jpg" height="184">&nbsp;</td>
</tr>
</table>

Thank you VERY much! That did work. This newsgroup is priceless.


You are welcome very much. And to think it took me 5 years of lurking
here to answer a post. I might actually be starting to know a little bit
about this stuff.

Patrick

--
Patrick A. Smith
Assistant System Administrator
Ocean Circulation Group – USF - College of Marine Science
http://ocg6.marine.usf.edu Phone: 727 553-3334
Jul 20 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: StopBsod | last post by:
Hello group, I use XSLT to output a unix shell script based on the content of an XML file : The XSLT : <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">...
2
by: Steve K | last post by:
While reading "Eric Myer on CSS" I decided it was time to replace the buttons on my page (which were graphics) with some CSS "buttons" but I hit some snags. The first set of buttons I replaced...
3
by: Brian | last post by:
I have a page with content, navigation, and footer divs, in that order. The nav div has position: absolute, width 8em, on green background. The other divs have an 8em green left border, such that...
9
by: Olav Tollefsen | last post by:
Take a look at: http://www.baldrian.no/HtmlPage.htm Why does the browser render some unwanted space (showing the background color) below the buttons (image) and above the blue cell? How can...
16
by: lovecreatesbeauty | last post by:
/* When should we worry about the unwanted chars in input stream? Can we predicate this kind of behavior and prevent it before debugging and testing? What's the guideline for dealing with it? ...
1
by: Rahul | last post by:
Hi Everybody I have some problem in my script. please help me. This is script file. I have one *.inq file. I want run this script in XML files. But this script errors shows . If u want i am...
1
by: mhillman | last post by:
Hi, I am creating a Database which will generate a Record of Achievement report with a pupil's lessons on the report. The problem that I am having is that I cannot completely hide the unwanted...
5
by: Tom | last post by:
I am having a problem where an extra gap (whitespace, padding) appears in a table cell where I don't want it. The data fed in the table is via dynamic HTML, so the amount in the middle cell may...
3
by: Joe Stateson | last post by:
I have a template field that contains filenames that are (or can be) on a unix system. The hypen (and others) is a valid filename character in unix. When I display the name of the file I get an...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.