Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsGeneralPHPASPPerlColdFusionFlashHTML, CSS, ScriptsBrowsers

Webmaster Forum / HTML, CSS, Scripts / CSS / October 2006



Tip: Looking for answers? Try searching our database.

CSS Padding(Margin?) Issues in Firefox

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
sllrphoto@yahoo.com - 22 Oct 2006 22:27 GMT
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.
Jim Moe - 22 Oct 2006 22:58 GMT
> 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
[quoted text clipped - 4 lines]
> 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 <ul> in 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.    */

Signature

jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)

sllrphoto@yahoo.com - 23 Oct 2006 02:08 GMT
Jim - Thank you for the tips.

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

> > 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
[quoted text clipped - 29 lines]
> jmm (hyphen) list (at) sohnen-moe (dot) com
> (Remove .AXSPAMGN for email)
J.O. Aho - 23 Oct 2006 05:38 GMT
> 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=http%3A%2F%2Flazycomic.blogspot.com%2F

CSS errors (12):
http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.blogger.com%2F
css%2Fnavbar%2Fmain.css&usermedium=all


 //Aho
Jim Moe - 23 Oct 2006 22:03 GMT
> 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* <head> sections.
- 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.blogspot.com%2F>

Signature

jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)

sllrphoto@yahoo.com - 24 Oct 2006 05:39 GMT
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 - Thank you for the tips.
> >
[quoted text clipped - 16 lines]
> jmm (hyphen) list (at) sohnen-moe (dot) com
> (Remove .AXSPAMGN for email)
J.O. Aho - 24 Oct 2006 05:43 GMT
> Jim / Dave / J.O. -
>
[quoted text clipped - 9 lines]
> (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
dorayme - 24 Oct 2006 07:17 GMT
> 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?

Signature

dorayme

J.O. Aho - 24 Oct 2006 16:07 GMT
>> Why not make two CSS files, one for Gecko based browsers and one for MSIE,
>> and
[quoted text clipped - 3 lines]
> 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
Andy Dingley - 24 Oct 2006 17:14 GMT
> 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.
Gérard Talbot - 28 Oct 2006 22:52 GMT
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=http://lazycomic.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-developer/upgrade_2.html#benefitsvalidmarkup

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

Why we won't help you
http://diveintomark.org/archives/2003/05/05/why_we_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
David Stone - 23 Oct 2006 12:48 GMT
> > 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
[quoted text clipped - 21 lines]
> 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 <ul> is in a middle or right column <div>
which does not have a left margin set explicitly...
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.