[ Solved ] Extended Alpha Section (?) in Firefox

Nov 30, 2007 14:06


I am not very good at CSS, so I don't really know what's happening in firefox for this layout :

Read more... )

bug:browser issues, page:alignment, sidebar:tags

Leave a comment

Comments 5

av8rmike November 30 2007, 13:45:15 UTC
Unfortunately, I'm on IE at the moment, so I can't see what's wrong with the layout. I'll have to check when I get home. For the others:

You're centering the tags in the tag cloud, but you only have four tags, so it's not going to look like anything. What are you trying to make it look like?

Centering the layout: In #container you have
float: center;
margin-left: 155px;
"Center" isn't a valid argument for float; only left and right are allowed. Delete that line and change the margin-left to:
margin: 0px auto;

Reply

watchmebe November 30 2007, 15:18:47 UTC
I'm actually having the same problem; my margins are set correctly though (float is not center). It seems like the tags are lining up with the correct margin (compared to the link lists above them) but aren't truly in the center of the cloud.

Reply

milou_veronica December 1 2007, 01:08:10 UTC
Oh, I see. I was trying everything I could think of, but I still have a lot to learn.

Unfortunately that does not center the layout in Firefox! (it defaults to the left).

The tags do not reach the left side of the side bar, they seem to stop where the 'TAGS' header ends (coincidence?).

Reply

av8rmike December 1 2007, 05:41:13 UTC
Centering: You want margin: 0px auto; in #container, not margin-left: 0px auto;

Layout: You have a empty section at the end called "Utility". You need the code from the base Expressive stylesheet in there:

/* Clear floats - inspired by
Now with more ydnar ( ... )

Reply


Leave a comment

Up