473,804 Members | 2,223 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

table background problem, help?

I'm trying to get this page to look the same in Netscape and IE.

I have a box that says 'Upcoming Events' on the lower left of the
page. It's supposed to have a gray background, but in NS 4.x it won't show
up:

http://www.wavian.com/clients/pugwash/

I'm also running into the same problem I think at the top, where I have a
navigation bar running horizontally that says 'about us' 'donate' (etc.) -
I want the blue background to span the entire width of the table, and it
doesn't do that in NS 4.x.

Both of these work well in IE though.

Any suggestions?

Thanks!
Holly
Jul 20 '05
15 2067
Thanks for checking!

I just found out what would work. Not that this is a graceful way... but
using an image for the table background instead of just the hex code did
it:

http://www.wavian.com/clients/pugwash/

Now I have to work on everything else it needs. Hopefully this will help
someone else in the future (when table backgrounds do not show up in older
versions of Netscape).

Holly
: I can't believe I'm saying this but try replacing the <div
: align="center"> with a <center> tag.

: BTW, it also displays correctly in Mozilla 1.6.
Jul 20 '05 #11
Holly wrote:
I did read all the advice - I know it looks like I didn't take it
It looks like you still haven't taken it, because you continue to top-post.

How am I supposed to post my replies in a newsgroup?:
http://allmyfaqs.com/faq.pl?How_to_post

Does that look familiar? The same link was in my last post in this
thread. Perhaps you'd be so kind as to actually *read* it. Otherwise, it
seems I'm wasting my time.
Brian wrote
Did you read A. Flavell's response? It seems that you didn't take
any of his advice. Noone can help you until you help yourself, and
you can start to help yourself by validating your code.

http://validator.w3.org/
I didn't do any of it yet but I will... am crunched up against many
deadlines so I've been juggling my tasks kindof clumsily.


I can understand that you don't have time to learn html coding in a
new way and redo your page -- or perhaps your entire site -- in
the space of a few days. But here's the part that you don't seem to
understand: There's no easy way for us to help you until your code is
valid. I wrote an inadequate explanation to explain it, but decided
instead to point you to

http://diveintomark.org/archives/200..._wont_help_you

Don't be put off by the headline. Take the time to read it, and it will
hopefully be clear.

In any case, fixing the underlying html errors is almost certainly
better use of your time than getting background images to appear in your
tables in NN4.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #12
Brian wrote:
Actually, you need to rethink the table layout/font tags stuff. Start
with some basic html, and then think about the presentation.

Did you not read her statement that her pages must be viewable in NS
4.x? For that, there's not much other way. I really hated to have to
point her to the div tag that is causing her problem, but for NS 4.x, it
just won't work the way it's done. I told her to replace the div with a
center, but putting the align in the td would also do the trick.

Unfortunately, the world is not such that we can all use the latest and
greatest all of the time. I use HTML 4.01 Transitional and CSS1 and I
validate to that. I do so because some people still use old browsers
and I have found that I get satisfactory results with the standards I
use. YMMV.

--
Stan McCann
Tularosa Basin chapter ABATE of NM Cooordinator, Alamogordo, NM
'94 1500 Vulcan (now wrecked) :(
http://surecann.com/Dcp_2068c.jpg
Jul 20 '05 #13
On Fri, 23 Apr 2004, Stan McCann wrote:
Brian wrote:
Actually, you need to rethink the table layout/font tags stuff. Start
with some basic html, and then think about the presentation.

Did you not read her statement that her pages must be viewable in NS
4.x?


"Viewable" does not necessarily mean "look the same", though.

Those who use an obsolete browser (and that includes me, at times)
don't have any right to expect ideal results. I'm keen to maintain
the results as "viewable", but I don't see how it can be worth going
much further than that.
Jul 20 '05 #14
Alan J. Flavell wrote:
"Viewable" does not necessarily mean "look the same", though.

Those who use an obsolete browser (and that includes me, at times)
don't have any right to expect ideal results. I'm keen to maintain
the results as "viewable", but I don't see how it can be worth going
much further than that.


Correct. I was trying to be understanding of her needs. She was
looking for a quick fix that she could do with her limited knowledge.
She's expressed a desire to learn the proper ways of doing things but
was in a time crunch. Having been there, done that, I was trying to be
helpful to her circumstances.

--
Stan McCann
Tularosa Basin chapter ABATE of NM Cooordinator, Alamogordo, NM
'94 1500 Vulcan (now wrecked) :(
http://surecann.com/Dcp_2068c.jpg
Jul 20 '05 #15
Stan McCann wrote:
Alan J. Flavell wrote:
"Viewable" does not necessarily mean "look the same", though.

Those who use an obsolete browser (and that includes me, at times)
don't have any right to expect ideal results.


I was trying to be understanding of her needs. She was looking for a
quick fix that she could do with her limited knowledge.


That's understandable, but a different answer then, "it must work in
NN4." Practically any page with robust html[1] and no css will work in
that browser.

[1] that is, valid html 4 with all optional closing tags included

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #16

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

Similar topics

3
5289
by: T | last post by:
I am attempting to create a menu using <div> and <span> tags within a table cell. When the page loads, some of the classes don't seem to be applied. If I hover over the menu everything is fine from that point on. If I remove the table everything renders correctly, and I have no problems. Unfortunately, I need to nest this menu within a table. I am currently having this problem in IE 6. Thanks in advance for the help! <html>...
10
4665
by: oLE | last post by:
I would like to add some javascript to show/hide a certain row of a table. The first row of the table contain the hyperlink that calls the javascript the second row is the one i want to show/hide with the javascript in a toggle fashion. the problem is a know very little javascript and have become incredibly frustrated because i went ahead thinking it was going to be like C. its not. I know i can use these lines to do the actual work:
1
3555
by: Thanks | last post by:
I have a routine that is called on Page_Init. It retrieves folder records from a database which I display as Link Buttons in a table cell. I set the table cell's bgcolor to a default color (say black for example). I am dynamically creating the LinkButton controls and adding them into the table cell and I've also hooked up an event handler for each LinkButton's Click event. This all works fine. Now in the Link Button's Click event...
10
5705
by: Karl-Inge Reknes | last post by:
Hi, Can anyone tell me how to change a table cells background color or background image in runtime with C#. Karl-Inge
2
16421
by: nino9stars | last post by:
Hello, I have just started messing with absolute positioning on webpages, and it definitely let's you do some creative things. Well, after much searching and help, I got the images I was using to overlap correctly. You can see it on this page: www.creativekaysjewelry.com The images overlap exactly how I wanted and in the right position
1
2450
by: edai | last post by:
Hi, I have a couple of pages which display database content in form of tables. The problem I am seeing is that @ 800x600 resolution, irrespective of the number of columns in the table the table width is constant and overflows the div. I am seeing this problem in both firefox 1.5 and ie6 I have been trying to identify the problem but without any success. I tried reducing the table width ( to 10%) but it did not help. the pages are at...
1
2691
by: rsteph | last post by:
I've got a page with a menu div that is 1066px wide by 150px high. And then I have some images that are 150px by 150px for the menu items. I put the images in a table that is set to 150x150px with a 1px border around the table, and around each cell in the table. For some reason though, a space is appearing inside the table, below the images. I've made the menu div background color red, so that it is obvious what's happened. I've also resized...
1
3081
by: asearle | last post by:
Dear all, I have been working to implement a scrolling table into an xml / xsl interface and so far have managed to put together an acceptable version using <thead> and <tbody> syntax. Indeed for the html examples that I found out there this seems to work perfectly. On the surface it also works perfectly in my xml / xsl implementation too (also based on html underneath). Indeed, using IE6*, you can take a look at a cut-down example by...
3
6691
dmjpro
by: dmjpro | last post by:
I think iText commonly used to create or manipulate PDF document in Java. So finally i decided to throw a question over here. For two days i am struggling. I encountered two types of table .. 1>Table: table can be easily created with row span or col span but still has a problem with vertical alignment of cell content. 2>PdfPTable: table can be easily created by col span but having a bit complex with row span. But it offers well vertical...
5
4200
by: Stepheno | last post by:
Hi, I am a recently converted Iseries (AS/400) RPG programmer trying to learn HTML/CSS/JavsScript all at the same time (not fun). My problem deals mostly with CSS. I will be reveiving a table, for which number of rows/columns i will not know, and I have to pretty up the table, including a verical scroll bar. This has to work in IE6, IE7, and FireFox 3.5. The CSS I currently have will give me a scrollable table, but only if I hard code...
0
9712
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9594
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10595
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10343
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10341
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7634
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5530
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4308
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3831
muto222
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.