473,396 Members | 2,102 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

How do I get this to work?

Please take a look at the following page:

If you are using IE: http://home.comcast.net/~delerious1/index2.html
If you are using Mozilla: http://home.comcast.net/~delerious1/index2_moz.html

I'm trying to have a navigation menu on the left, and content on the right.
With my default browser setups, there is a little bit of whitespace between
the navigation menu and the content area, which is what I want. But I would
also like the user to be able to view the page with whatever text size he/she
prefers, and that is where my page breaks. If I increase (in IE) or decrease
(in IE or Mozilla) the text size, then the navigation menu all of a sudden
overlaps with the content area. I'm using em to specify the left side of the
content area, so I thought that would move the content area over the correct
amount when the text size gets adjusted, but either I don't understand em or I
am not doing it correctly.

I also thought that the fact that I am using images in my navigation menu
might be screwing up the em, but that is not the case, as you can see here:

If you are using IE: http://home.comcast.net/~delerious1/index3.html
If you are using Mozilla: http://home.comcast.net/~delerious1/index3_moz.html

Any tips on how I can get this to work would be appreciated! Thanks!

Jul 20 '05 #1
10 2032
Hmm... it would appear that tables *are* still necessary in some cases to
manage layout.

Jul 20 '05 #2
Sometime around Thu, 04 Dec 2003 10:08:14 GMT, de*******@no.spam.com is
reported to have stated:

I'm trying to have a navigation menu on the left, and content on the right.


http://www.xs4all.nl/~apple77/column...n_navleft.html

--
Mark Parnell
http://www.clarkecomputers.com.au
Jul 20 '05 #3
delerious wrote:
Hmm... it would appear that tables *are* still necessary in some cases to
manage layout.


Or that most of us are bored of all these layout questions and don't feel
compelled to answer every "How do I..." question posted.

The fact of the matter is that any table-based layout can be replicated in
CSS (as long as you're not worried about retrofitting it to work in
years-old broken browsers).

--
Toby A Inkster BSc (Hons) ARCS
Contact Me - http://www.goddamn.co.uk/tobyink/?page=132

Jul 20 '05 #4
In article <3f***************@news.md.comcast.giganews.com> in
comp.infosystems.www.authoring.stylesheets, <de*******@no.spam.com>
wrote:
Please take a look at the following page:

If you are using IE: http://home.comcast.net/~delerious1/index2.html
If you are using Mozilla: http://home.comcast.net/~delerious1/index2_moz.html


Does nobody but me see something very wrong with the idea that there
should be different pages for different browsers?

--
Stan Brown, Oak Road Systems, Cortland County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2 spec: http://www.w3.org/TR/REC-CSS2/
2.1 changes: http://www.w3.org/TR/CSS21/changes.html
validator: http://jigsaw.w3.org/css-validator/
Jul 20 '05 #5
Quoth the raven named Stan Brown:
In article <3f***************@news.md.comcast.giganews.com> in
comp.infosystems.www.authoring.stylesheets, <de*******@no.spam.com>
wrote:
Please take a look at the following page:

If you are using IE: http://home.comcast.net/~delerious1/index2.html
If you are using Mozilla: http://home.comcast.net/~delerious1/index2_moz.html


Does nobody but me see something very wrong with the idea that there
should be different pages for different browsers?


Hey, I'm with ya. See the other thread that begins with "arghh."

Separate browser versions are complete headaches to maintain. A
well-planned layout doesn't even need two versions for screen and print.

--
-bts
-This space intentionally left blank.

Jul 20 '05 #6
Beauregard T. Shagnasty wrote:
A well-planned layout doesn't even need two versions for screen and print.


How so? I don't know about you, but I don't want to see navigation or
login information on a printed page.

Jul 20 '05 #7
Leif K-Brooks wrote:
Beauregard T. Shagnasty wrote:
A well-planned layout doesn't even need two versions for screen and
print.


How so? I don't know about you, but I don't want to see navigation or
login information on a printed page.


quite right, but that doesn't mean two versions

--
William Tasso - http://WilliamTasso.com
Jul 20 '05 #8
William Tasso wrote:
quite right, but that doesn't mean two versions


Sorry, my mistake. Thought Beauregard T. Shagnasty was talking about
seperate style sheets, not seperate pages.

Jul 20 '05 #9
In article <ZI*****************@monger.newsread.com> in
comp.infosystems.www.authoring.stylesheets, Leif K-Brooks
<eu*****@ecritters.biz> wrote:
Beauregard T. Shagnasty wrote:
A well-planned layout doesn't even need two versions for screen and print.


How so? I don't know about you, but I don't want to see navigation or
login information on a printed page.


Neither do most of us -- that's why most of us assign classes to
those items that are display:none on the print stylesheet.

The idea is that there are two stylesheets, but only one of every
Web page.

--
Stan Brown, Oak Road Systems, Cortland County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2 spec: http://www.w3.org/TR/REC-CSS2/
2.1 changes: http://www.w3.org/TR/CSS21/changes.html
validator: http://jigsaw.w3.org/css-validator/
Jul 20 '05 #10
Quoth the raven named Leif K-Brooks:
William Tasso wrote:
quite right, but that doesn't mean two versions


Sorry, my mistake. Thought Beauregard T. Shagnasty was talking about
seperate style sheets, not seperate pages.


Yes, I was referring to not needing separate pages for screen and
print, as well as not needing separate pages for different browsers.

My print style sheets remove the display of navigation and other fluff
and also set the default font to serif, which my clients seem to
prefer on paper.

--
-bts
-This space intentionally left blank.

Jul 20 '05 #11

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

Similar topics

2
by: Venkat | last post by:
Hi, My HTML page doesnot work properly in Netscape 7.1. But works fine in Opera 7 and IE 6.0. I could not figure out the problem. If any one could/suggest it would be nice.. This piece of HTML...
2
by: Andrew Mogford | last post by:
Hi, We have moved a web site from a development server running Windows 2000 and IIS 5 to a Windows 2003 server running IIS 6.0 Now the asp pages do not work correctly. For example,...
0
by: Jarod_24 | last post by:
How does tabindex work in ASP .net pages I dosen't seem to work quite like in regular forms. and there isn't any TabStop property either. 1 .How do you prevent a control form beign "tabbed"....
30
by: bblais | last post by:
Hello, Let me start by saying that I am coming from a background using Matlab (or Octave), and C++. I am going to outline the basic nuts-and-bolts of how I work in these languages, and ask for...
4
by: rodchar | last post by:
hey all, i working with the Publisher object model in an ASP.NET page. When I'm working with my project locally everything works fine. However, when I deploy the application to my app server, it...
9
by: Cliff | last post by:
I've got a number of SNMP devices scattered around the globe that I want to get some information off.. I've got a couple of classes whcih get a quite complex table together from SQL and SNMP...
3
by: hscott93 | last post by:
Hello. I have a new Vista based laptop at work that connects to a Windows 2003 Small Business Server at work via an assigned, static IP address. When I take the laptop home, I have router that...
2
by: gsherp | last post by:
I can get the Onclick event handler to work when I added a new row using insertRow. It doesn't work in IE or in FF var cellarea = row.insertCell(2); cellarea.style.backgroundColor =...
0
by: wimdows | last post by:
Hi, I've successfully added custom fields to the Task Work Item template, using the Process Editor (and opening from server). However, I would like to also see these items in the field list...
1
by: FlashT | last post by:
Hello, I got a script: http://www.mattkruse.com/javascript/autocomplete/index.html It works fine on IE and Opera, but does not on FF. It does something on FF, but not what it should do (check...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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...
0
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,...

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.