Jump to content

div help


herghost

Recommended Posts

You have to wrap that within another centered div. If I am getting you right here, that this should be outside the webpage which is 700px;

 

Like so:

 


<div id="mainwrap">

<div id="lmenu"></div>

<div id="content"></div>

</div>

 

..then center the main wrapper and make sure the widths add up for your menu and content. So say you're menu is 200px and the content is 700px:

 


#mainwrap{width:900px;margin: 0 auto;}
#lmenu{width: 200px;float:left;}
#content{width:700px;float:left;}

 

That should work fine though just pasting all that in a page as is probably won't.

 

[/code]

Link to comment
https://forums.phpfreaks.com/topic/194482-div-help/#findComment-1023098
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.