473,396 Members | 2,147 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.

CSS Padding(Margin?) Issues in Firefox

A veteran of early html, I've modified my blog template and made it
look rather clean (albeit rather plain) when viewed with IE.

Ironically, I'm a big Firefox fan, but when viewed in FF, my blog
leaves a lot to be desired.

The blog (which is at http://lazycomic.blospot.com/ ) is a basic two
column style, with the right column being the one that's giving me the
problems.

In IE, it has nice padding around the text in the right column and
decent spacing between it and the left (main) column. It also sits
rather nicely in the middle of the window.

PROBLEM #1 In FireFox, the text in the right column is slammed right
into the left edge of the column. The bulleted items even go into the
main column. (I've noticed the FF users continue to read my blog -- and
I appreciate it -- but it looks rather dreadful.)

PROBLEM #2 In IE, the color (#f5f5f5) for the right column follows
neatly until it's done, while it FireFox it seems to end abruptly.

I'm sure there are a ton of poor syntax issues with my blog template,
but any help on correcting these two problems would be a great step in
the right direction.

Oct 22 '06 #1
11 6838
sl*******@yahoo.com wrote:
>
The blog (which is at http://lazycomic.blospot.com/ ) is a basic two
column style, with the right column being the one that's giving me the
problems.
Bad URL.
In IE, it has nice padding around the text in the right column and
decent spacing between it and the left (main) column. It also sits
rather nicely in the middle of the window.

PROBLEM #1 In FireFox, the text in the right column is slammed right
into the left edge of the column. The bulleted items even go into the
main column. (I've noticed the FF users continue to read my blog -- and
I appreciate it -- but it looks rather dreadful.)
Without a useful URL I'm only guessing.... Each browser has a different
idea about how to apply padding and margins, and how much. A way to
achieve a mostly uniform look across browsers is to use
html * { padding: 0; margin: 0; }
and explicitly specify the margin and padding for every element.

For <ulin particular, FF and IE use distinctly different values; I do
not remember which is which but one uses padding to indent a <ul>, the
other uses margin. If you set margin or padding to 0, one browser renders
the list without indent on the left.
This works reasonably well:
html * { padding: 0; margin: 0; }
ol { padding-left: 2.5em; } /* Allows up to 3 digits. */
ul { padding-left: 1.4em; } /* Minimum needed across browsers. */

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Oct 22 '06 #2
Jim - Thank you for the tips.

Here's the *correct* URL: http://lazycomic.blogspot.com/

Jim Moe wrote:
sl*******@yahoo.com wrote:

The blog (which is at http://lazycomic.blospot.com/ ) is a basic two
column style, with the right column being the one that's giving me the
problems.
Bad URL.
In IE, it has nice padding around the text in the right column and
decent spacing between it and the left (main) column. It also sits
rather nicely in the middle of the window.

PROBLEM #1 In FireFox, the text in the right column is slammed right
into the left edge of the column. The bulleted items even go into the
main column. (I've noticed the FF users continue to read my blog -- and
I appreciate it -- but it looks rather dreadful.)
Without a useful URL I'm only guessing.... Each browser has a different
idea about how to apply padding and margins, and how much. A way to
achieve a mostly uniform look across browsers is to use
html * { padding: 0; margin: 0; }
and explicitly specify the margin and padding for every element.

For <ulin particular, FF and IE use distinctly different values; I do
not remember which is which but one uses padding to indent a <ul>, the
other uses margin. If you set margin or padding to 0, one browser renders
the list without indent on the left.
This works reasonably well:
html * { padding: 0; margin: 0; }
ol { padding-left: 2.5em; } /* Allows up to 3 digits. */
ul { padding-left: 1.4em; } /* Minimum needed across browsers. */

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Oct 23 '06 #3
sl*******@yahoo.com wrote:
Jim - Thank you for the tips.

Here's the *correct* URL: http://lazycomic.blogspot.com/

Check here and you see some of your faulty html code:

HTML errors (200):
http://validator.w3.org/check?uri=ht...logspot.com%2F

CSS errors (12):
http://jigsaw.w3.org/css-validator/v...usermedium=all

//Aho
Oct 23 '06 #4
In article <Yp******************************@giganews.com>,
Jim Moe <jm***************@sohnen-moe.comwrote:
sl*******@yahoo.com wrote:

The blog (which is at http://lazycomic.blospot.com/ ) is a basic two
column style, with the right column being the one that's giving me the
problems.
Bad URL.
In IE, it has nice padding around the text in the right column and
decent spacing between it and the left (main) column. It also sits
rather nicely in the middle of the window.

PROBLEM #1 In FireFox, the text in the right column is slammed right
into the left edge of the column. The bulleted items even go into the
main column. (I've noticed the FF users continue to read my blog -- and
I appreciate it -- but it looks rather dreadful.)
Without a useful URL I'm only guessing.... Each browser has a different
idea about how to apply padding and margins, and how much. A way to
achieve a mostly uniform look across browsers is to use
html * { padding: 0; margin: 0; }
and explicitly specify the margin and padding for every element.

For <ulin particular, FF and IE use distinctly different values; I do
not remember which is which but one uses padding to indent a <ul>, the
other uses margin. If you set margin or padding to 0, one browser renders
the list without indent on the left.
A related problem is if the <ulis in a middle or right column <div>
which does not have a left margin set explicitly...
Oct 23 '06 #5
sl*******@yahoo.com wrote:
Jim - Thank you for the tips.

Here's the *correct* URL: http://lazycomic.blogspot.com/
Your code is a bit of a train wreck.
- There is no need whatsoever for "<?xml ... ?>. And IE does not
understand <?xml anyway.
- There is no DTD. Use
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
- There are *two* <headsections.
- You have mixed HTML and XHTML syntax.

The above are the main reasons for the huge number of validation errors
your page generates.
<http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Flazycomic.blogspo t.com%2F>

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Oct 23 '06 #6
Jim / Dave / J.O. -

Thanks for the tips. With the "trainwreck" I've given the validators
too much ammo -- I don't think I'll tackle that until if/when I just
overhaul the whole template.

The tip on defining the right column was the biggest help in getting
things right. Also, somewhere in there I managed to get the typefaces
to match in IE and FF.

I still can't seem to get both columns to float center in firefox, but
(again, thanks to the trainwreck) that may be just b/c of a
conflict/override/glitch in the various definitions.

Thanks again,
Steve D. (http://lazycomic.blogspot.com/)

Jim Moe wrote:
sl*******@yahoo.com wrote:
Jim - Thank you for the tips.

Here's the *correct* URL: http://lazycomic.blogspot.com/
Your code is a bit of a train wreck.
- There is no need whatsoever for "<?xml ... ?>. And IE does not
understand <?xml anyway.
- There is no DTD. Use
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
- There are *two* <headsections.
- You have mixed HTML and XHTML syntax.

The above are the main reasons for the huge number of validation errors
your page generates.
<http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Flazycomic.blogspo t.com%2F>

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Oct 24 '06 #7
sl*******@yahoo.com wrote:
Jim / Dave / J.O. -

Thanks for the tips. With the "trainwreck" I've given the validators
too much ammo -- I don't think I'll tackle that until if/when I just
overhaul the whole template.

The tip on defining the right column was the biggest help in getting
things right. Also, somewhere in there I managed to get the typefaces
to match in IE and FF.

I still can't seem to get both columns to float center in firefox, but
(again, thanks to the trainwreck) that may be just b/c of a
conflict/override/glitch in the various definitions.
Why not make two CSS files, one for Gecko based browsers and one for MSIE, and
a little bit of javascript that selects the right CSS based on the user-agent
string.
//Aho
Oct 24 '06 #8
In article <4q************@individual.net>,
"J.O. Aho" <us**@example.netwrote:
Why not make two CSS files, one for Gecko based browsers and one for MSIE,
and
a little bit of javascript that selects the right CSS based on the user-agent
string.
Why is the js needed considering there are ways to let IE see CSS
instructions that FF does not see?

--
dorayme
Oct 24 '06 #9
dorayme wrote:
In article <4q************@individual.net>,
"J.O. Aho" <us**@example.netwrote:
>Why not make two CSS files, one for Gecko based browsers and one for MSIE,
and
a little bit of javascript that selects the right CSS based on the user-agent
string.

Why is the js needed considering there are ways to let IE see CSS
instructions that FF does not see?
It's easier to look true and for same options you can have different values too.
//Aho
Oct 24 '06 #10

J.O. Aho wrote:
Why not make two CSS files, one for Gecko based browsers and one for MSIE,
1. because it's a bad idea.

2. because it's pointless. IE isn't _that_ bad. If you can hit the
standard then not only is FF happy, but even IE will get nearly
everything right, so long as you use a suitable doctype to get it into
standards-based rendering mode. One stylesheet will fit all.

The only issues I know of where you can't do this are for the default
treatment of lists (just set everything (margin & padding) explicitly
for both). Also IE still have some font-sizing issues.
a little bit of javascript that selects the right CSS based on the user-agent
string.
That's _MUCH_ worse.

Oct 24 '06 #11

Followup-to set: alt.html
Here's the *correct* URL: http://lazycomic.blogspot.com/
1-
You've got 284 validation markup errors
http://validator.w3.org/check?uri=ht....blogspot.com/

Your problem could be related to those, you know.. Without fixing those
first, it's counter-productive to try to figure out what could be the
problem.

Using Web Standards in Your Web Pages
The benefits for valid markup code
http://www.mozilla.org/docs/web-deve...itsvalidmarkup

Mozilla Web author FAQ
http://www.mozilla.org/docs/web-developer/faq.html

Why we won't help you
http://diveintomark.org/archives/200..._wont_help_you
2-
Some of your CSS declarations imply a font-size of 10px. Now, that's
very small for people (over 40 years old) who may have set a minimum
font-size of over 12px for webpages in Firefox. Have you checked your
layout with such minimum setting?

3-
You have many errors in your css declarations: here's a few:

Invalid number : float center is not a float value : center
# Line: 96 Context : #rightcontent

Invalid number : margin only 0 can be a length. You must put an unit
after your number : 10 10 10 10
# Line: 100 Context : #rightcontent

Invalid number : padding only 0 can be a length. You must put an unit
after your number : 10 10 10 0
4-
You have all kinds of CSS, javascript and a deep and wide DOM tree: this
is exactly the type of code that requires strict validation, combining
and compressing declarations and reduction of DOM tree.

5-
Font-size should never be defined with px. This is well known:

W3C Quality Assurance tip for webmaster:
Care With Font Size: Forget <font>, use CSS
"Do not specify the font-size in pt, or other absolute length units for
screen stylesheets. They render inconsistently across platforms and
can't be resized by the User Agent (e.g browser).
Use relative length units such as percent or (better) em"
http://www.w3.org/QA/Tips/font-size#css

Followup-to set: alt.html

Gérard
--
remove blah to email me
Oct 28 '06 #12

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

Similar topics

12
by: Andrew Thompson | last post by:
I am developing a Periodic Table of the Elements as<DIV>s ..(chuckle - just kidding!) a <TABLE> at http://www.physci.org/test/chem/, or rather, the table itself is.....
2
by: Lukasz Grabun | last post by:
There's a page http://www.dwarfscorner.com It looks as nice as I could design it; I like it, I think. There's just one thing I can't get along with: the vertical allignment of h2 in grey and...
18
by: Toronto Web Designer | last post by:
I'm having trouble with the padding and margin properties. IE tends to be happier with the padding and Netscape with the margin property. So I tried this: <link href="netscape-styles.css"...
2
by: StarQuake | last post by:
At this site: http://forwarding.robas.com You can see in IE there is cell padding in 'Berkman Bedrijven' and with Firefox there isn't. I don't want any cell padding. Anyone? --...
1
by: RA | last post by:
Hi When I create a table and aligned it to the left, how can I have some padding added from the left so that the user will see the table border on the left? I don't want to use the vs style...
2
by: Syl | last post by:
Hi - I have createed a two column page with a form that displays in each column. The right side column is not displaying properly - it seems as though the *left* colmun is mkaing the right...
3
by: Daz | last post by:
Hi everyone. I have just been making a JavaScript chat applet, which should open in a new child window. It does all of this fine, and works within Firefox beatifully. However, IE thinks it's...
0
by: as702ecs | last post by:
hi guys, bit of a strange one. when using the holly hack to address the well-documented "expanding box" problem in ie6, i encounter an undesired side-affect - all my unordered list items exhibit a...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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...
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
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...
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,...
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...

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.