I've built a site using tables for layout, and it looks ok in
everything but in IE where it places extra space around the graphics
that contain a rollover script. (Please see http://www.bentleysweb.com
) Below is a snippet of the table cell in question. How can I
eliminate that extra space in IE?
Thanks.
-Ray
<TD CLASS="first" colspan="2" VALIGN="TOP">
<img src="images/windowtop.gif" width="121" height="43" alt="">
<a href="display.html" target="_self"
onmouseover="changeImages('display', 'images/displayx.gif'); return
true;"
onmouseout="changeImages('display', 'images/display.gif'); return
true;"
onmousedown="changeImages('display', 'images/displayx.gif'); return
true;"
onmouseup="changeImages('display', 'images/displayx.gif'); return
true;">
<img name="display" src="images/display.gif" width="121"
height="31" border="0" alt="Display Cases Button"></a>
<img src="images/black1.gif" width="121" height="22" alt="">
<a href="framing.html"
onmouseover="changeImages('framing', 'images/framingx.gif'); return
true;"
onmouseout="changeImages('framing', 'images/framing.gif'); return
true;"
onmousedown="changeImages('framing', 'images/framingx.gif'); return
true;"
onmouseup="changeImages('framing', 'images/framingx.gif'); return
true;">
<img name="framing" src="images/framing.gif" width="121"
height="25" border="0" alt="Framing & Engraving"></a>
<img src="images/windowbot.gif" width="121" height="43" alt="">
</td> 11 9820
Hi,
A simple method I use is to specify the dimensions of the <td> the same as
the pic...
<td width="121" height="43"><img src="images/windowtop.gif" width="121"
height="43" alt=""></td>
Hope that helps
Andy
<rf**@scoe.net> wrote in message
news:11**********************@h76g2000cwa.googlegr oups.com... I've built a site using tables for layout, and it looks ok in everything but in IE where it places extra space around the graphics that contain a rollover script. (Please see http://www.bentleysweb.com ) Below is a snippet of the table cell in question. How can I eliminate that extra space in IE?
Thanks.
-Ray
<TD CLASS="first" colspan="2" VALIGN="TOP"> <img src="images/windowtop.gif" width="121" height="43" alt="">
<a href="display.html" target="_self" onmouseover="changeImages('display', 'images/displayx.gif'); return true;" onmouseout="changeImages('display', 'images/display.gif'); return true;" onmousedown="changeImages('display', 'images/displayx.gif'); return true;" onmouseup="changeImages('display', 'images/displayx.gif'); return true;"> <img name="display" src="images/display.gif" width="121" height="31" border="0" alt="Display Cases Button"></a>
<img src="images/black1.gif" width="121" height="22" alt="">
<a href="framing.html" onmouseover="changeImages('framing', 'images/framingx.gif'); return true;" onmouseout="changeImages('framing', 'images/framing.gif'); return true;" onmousedown="changeImages('framing', 'images/framingx.gif'); return true;" onmouseup="changeImages('framing', 'images/framingx.gif'); return true;"> <img name="framing" src="images/framing.gif" width="121" height="25" border="0" alt="Framing & Engraving"></a>
<img src="images/windowbot.gif" width="121" height="43" alt=""> </td> rf**@scoe.net wrote: I've built a site using tables for layout, and it looks ok in everything but in IE where it places extra space around the graphics that contain a rollover script. (Please see http://www.bentleysweb.com ) Below is a snippet of the table cell in question. How can I eliminate that extra space in IE?
Thanks.
A quick, off-topic comment on your web site. Please do not use red on
black, black on red, orange on blue, or blue on orange for navigation.
About 8 percent of the male population is red / green color blind.
This makes the mentioned color combinations difficult to impossible to
read.
Since you are creating a sports and celebrity memorabilia site, making
navigation difficult for 8 percent of your potential target audience
doesn't seem to be a good idea.
Just my two cents . . . .
/mde/ rf**@scoe.net wrote: I've built a site using tables for layout, and it looks ok in everything but in IE where it places extra space around the graphics that contain a rollover script. (Please see http://www.bentleysweb.com ) Below is a snippet of the table cell in question. How can I eliminate that extra space in IE?
<snipped code>
Just something I saw in your code, not related to your layout problem.
You have the function preloadImages(), presumably to preload your
navigational rollover images, however your call the function on the
documents onload event. This sort of defeats the concept of preloading
the images if your delay the loading until *after* the whole page is
loaded! Onload fires only after the page has completely downloaded. On
dialup the effect is very noticeable, none of your nav buttons rollover
until after a distinct delay after page renders. To get the nav buttons
to work sooner, call the function in the head and it will preload the
images before the page has finish loading.
....
preloadImages();
// -->
</script>
</head>
<body bgcolor="#FFFFFF" LINK="#666666" VLINK="#666666">
....
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO http://www.LittleWorksStudio.com
JRS: In article <Fz***************@fe05.lga>, dated Sat, 17 Jun 2006
21:24:04 remote, seen in news:comp.infosystems. www.authoring.html, Mark
Eggers <md******@charter.net> posted : A quick, off-topic comment on your web site. Please do not use red on black, black on red, orange on blue, or blue on orange for navigation. About 8 percent of the male population is red / green color blind. This makes the mentioned color combinations difficult to impossible to read.
Since you are creating a sports and celebrity memorabilia site, making navigation difficult for 8 percent of your potential target audience doesn't seem to be a good idea.
You appear to be ignoring the possibility of female interest in the
site.
--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 MIME. ©
Web <URL:http://www.merlyn.demon.co.uk/> - FAQish topics, acronyms, & links.
For news:borland.*, use their server newsgroups.borland.com ; but first read
Guidelines <URL:http://www.borland.com/newsgroups/guide.html> ff. with care.
Dr John Stockton wrote: Since you are creating a sports and celebrity memorabilia site,
You appear to be ignoring the possibility of female interest in the site.
I imagine that was rather his point...
In article
<11*********************@p79g2000cwp.googlegroups. com>,
"Andy Dingley <di*****@codesmiths.com>"
<di*****@codesmiths.com> wrote: Dr John Stockton wrote:
Since you are creating a sports and celebrity memorabilia site,
You appear to be ignoring the possibility of female interest in the site.
I imagine that was rather his point...
!
--
dorayme
Thanks to everyone who offered a bit of sage advice. I tried many of
the suggestions, and the one that worked was among the simplest
suggestions and came from BootNic's link -- add a <br> after each
element.
Jonathan, thanks for the input on the preloadImages code. I've revised
the code to put the command in the head. Hopefully that'll improve
performance on a dialup connection.
I appreciate everybody's input. Nice to have that puzzle solved. Now
I have another very similar problem which I'll post in a separate
thread.
Cheers!
-Ray fl******@comcast.net wrote: Thanks to everyone who offered a bit of sage advice. I tried many of the suggestions, and the one that worked was among the simplest suggestions and came from BootNic's link -- add a <br> after each element.
Jonathan, thanks for the input on the preloadImages code. I've revised the code to put the command in the head. Hopefully that'll improve performance on a dialup connection.
I appreciate everybody's input. Nice to have that puzzle solved. Now I have another very similar problem which I'll post in a separate thread.
Actually why not lighten the whole page dramatically there is nothing
particularly special about your font you could rid all the special
images and replace with reusable backgrounds and rid the JavaScript all
together by using CSS hovers on your links to change the text color,
(even IE support this!).
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO http://www.LittleWorksStudio.com
Jonathan N. Little wrote: fl******@comcast.net wrote: Thanks to everyone who offered a bit of sage advice. I tried many of the suggestions, and the one that worked was among the simplest suggestions and came from BootNic's link -- add a <br> after each element.
Jonathan, thanks for the input on the preloadImages code. I've revised the code to put the command in the head. Hopefully that'll improve performance on a dialup connection.
I appreciate everybody's input. Nice to have that puzzle solved. Now I have another very similar problem which I'll post in a separate thread.
Actually why not lighten the whole page dramatically there is nothing particularly special about your font you could rid all the special images and replace with reusable backgrounds and rid the JavaScript all together by using CSS hovers on your links to change the text color, (even IE support this!).
He could go even more in to cleaning up his source code and get rid of
the Tables all together!.
--
Regards Chad. http://freewebdesign.cjb.cc
On Sun, 18 Jun 2006 16:33:06 +0100, Dr John Stockton wrote: JRS: In article <Fz***************@fe05.lga>, dated Sat, 17 Jun 2006 21:24:04 remote, seen in news:comp.infosystems.www.authoring.html, Mark Eggers <md******@charter.net> posted : A quick, off-topic comment on your web site. Please do not use red on black, black on red, orange on blue, or blue on orange for navigation. About 8 percent of the male population is red / green color blind. This makes the mentioned color combinations difficult to impossible to read.
Since you are creating a sports and celebrity memorabilia site, making navigation difficult for 8 percent of your potential target audience doesn't seem to be a good idea.
You appear to be ignoring the possibility of female interest in the site.
Only 0.4% of women are colour blind apparently. http://visibone.com/colorblind/
JRS: In article <pa****************************@zync.co.uk>, dated Thu,
22 Jun 2006 13:39:43 remote, seen in news:comp.infosystems. www.authoring
..html, Richard Gration <ri*****@zync.co.uk> posted : On Sun, 18 Jun 2006 16:33:06 +0100, Dr John Stockton wrote:
JRS: In article <Fz***************@fe05.lga>, dated Sat, 17 Jun 2006 21:24:04 remote, seen in news:comp.infosystems.www.authoring.html, Mark Eggers <md******@charter.net> posted : A quick, off-topic comment on your web site. Please do not use red on black, black on red, orange on blue, or blue on orange for navigation. About 8 percent of the male population is red / green color blind. This makes the mentioned color combinations difficult to impossible to read.
Since you are creating a sports and celebrity memorabilia site, making navigation difficult for 8 percent of your potential target audience doesn't seem to be a good idea.
You appear to be ignoring the possibility of female interest in the site.
Only 0.4% of women are colour blind apparently.
Indeed. Allowing for them, and 8% of men, then if women are equally
interested it will be 4.2% of the total that suffer, not 8%.
--
© John Stockton, Surrey, UK. *@merlyn.demon.co.uk / ??*********@physics.org ©
Web <URL:http://www.merlyn.demon.co.uk/> - FAQish topics, acronyms, & links.
Correct <= 4-line sig. separator as above, a line precisely "-- " (SoRFC1036)
Do not Mail News to me. Before a reply, quote with ">" or "> " (SoRFC1036) This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: mappo |
last post by:
There are about a million posts on how to get rid of the extra space _after_ the
form end-tag, but I can't find any that solve my problem: extra space _in_ the
form tag.
I have a table nestled...
|
by: MattB |
last post by:
Hello please help,
I have a table cell with a div in it. The div has a width of 300px.
but when it is rendered it puts extra space into the table cell.
Here's the style
<style>...
|
by: Applebrown |
last post by:
Hello, basically, I'm just learning intermediate CSS and trying to convert
my old table webpage completely to CSS. Hoorah, right? Well, it's not quite
going as planned. It's an extremely simple...
|
by: skeeterbug |
last post by:
http://www.geocities.com/operationsengineer1/test2.htm
the extra space between the logoHeader and the menu bar occurs when i
add the <ul>. if i comment out the ul and and all the li, the 1em...
|
by: Uncle Pirate |
last post by:
This has me stumped. I am trying to use as little space as possible at
the top of my document but Firefox/Mozilla insists on placing vertical
space before any element. IE displays it correctly...
|
by: Mały Piotru |
last post by:
Hello,
(sorry for my English, it's not my native language...)
I am new to HTML/CSS but I have to modify some website. Could you help
me with one problem please?
The problem is on page...
|
by: fleemo17 |
last post by:
I have another table layout that looks good in all the browsers I've
tested it in *except*, once again, IE on the PC. In IE there's extra
space around some of the table cells making up the layout. ...
|
by: dw |
last post by:
hello -
first, let me state that i am an Asp.Net rookie.
here is the situation:
i have a page that looks good in the vs.net designer, but when the page
renders there are extra amounts...
|
by: jerrygadd |
last post by:
Hi can anyone please help?
I have a need to make a table of fixed size, containing three rows, where the middle row auto expands to fill the remaining space between the top and bottom rows.
...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: Teri B |
last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course.
0ne-to-many. One course many roles.
Then I created a report based on the Course form and...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
| |