help with alignment / positioning

liunx

Guest
Site In need of help (<!-- m --><a class="postlink" href="http://neczy.firewebx.com/blog/wordpress/index.php">http://neczy.firewebx.com/blog/wordpress/index.php</a><!-- m -->)

I need to move the bar at the bottom to next to the div with the blog entries...any advice?Position the bar absolutely and give the content related margin.
Oh, and keep your font at 1em:rolleyes:One start would be to position #menu absolutely, remove the float from #content and give it a 200px left margin.

Another alternative would be to resequence your HTML so #menu precedes #content.alrighty, i fixed it, thanks.ok actually need more help on this

I had it positioned absolutely, then had it with a margin. It looked fine in FireFox then I went into IE and the menu was pushed far right. I took the margin off and looked the way it was supposed to in IE not in FF. any ideas?

Site In need of help (<!-- m --><a class="postlink" href="http://neczy.firewebx.com/blog/wordpress/index.php">http://neczy.firewebx.com/blog/wordpress/index.php</a><!-- m -->)I still prefer dumping the absolute and moving the #menu up into the flow.This should work:

#content {
width:580px;
padding:5px;
float:right;
background:#eee;
letter-spacing: 2px;
}

instead of
#content {
width:580px;
padding:5px;
float:left;
background:#eee;
letter-spacing: 2px;
}

You might want to add some more padding though. It looks too close together.

I tried it with CSSedit in Firefox, and it should work in IE, but you never know.ok ray326, I want to do it the way you said, and I started, but now the menu is just below the content div, so it isnt aligned. Assistance please?Except for the menu being on the right it looks ok to me in Firefox.In IE it is messed up, i want it to look like it is in FF, just in IE.In #content, width:575px;

In #menu, remove margin-left, add float:left;
 
Back
Top