Warptweet Posted October 10, 2007 Share Posted October 10, 2007 I have a div that I need to center on the web page horizontal-wise. I tried float: center; and other things, but none of them are "perfect", and cause differences in other browsers/modems such as widescreens, smallscreens, firefox, IE, it's a total incompatibility issue. Is there a sure-fire way I can center a div that works on all modem screens and internet browsers horizontal-wise? Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/ Share on other sites More sharing options...
MasterACE14 Posted October 10, 2007 Share Posted October 10, 2007 This is the same thing that annoys me have you tried? body { text-align: center; } Regards ACE Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-365896 Share on other sites More sharing options...
cmgmyr Posted October 10, 2007 Share Posted October 10, 2007 no, don't use that. use: #page_wrapper{ margin:0px auto; width:800px; } ...just change the width to whatever you need. Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-365900 Share on other sites More sharing options...
Warptweet Posted October 10, 2007 Author Share Posted October 10, 2007 Thanks. MasterACE14, your code wasn't what I meant. I could easily center the text using <center></center>, but cmgmyr, your code works, thanks =) Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-365926 Share on other sites More sharing options...
MasterACE14 Posted October 10, 2007 Share Posted October 10, 2007 awesome, i can use that code on my website too now cheers. Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-365931 Share on other sites More sharing options...
Warptweet Posted October 10, 2007 Author Share Posted October 10, 2007 Alright... new question... I have two divs now. I place them on my website... the first <div> appears ABOVE the second <div>. How can I make the divs BESIDE each other, connecting? Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-365935 Share on other sites More sharing options...
MasterACE14 Posted October 10, 2007 Share Posted October 10, 2007 you mean 2 columns? for the first one set this inside it: float: left; and the other one: float: right; that will create the 2 columns, 1 div is the left column, and the other is the right. Regards ACE Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-365940 Share on other sites More sharing options...
Warptweet Posted October 10, 2007 Author Share Posted October 10, 2007 That overrides the code that horizontally centers my div. Thanks for trying, anyone else know how I can make them side-by-side? Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-366449 Share on other sites More sharing options...
Aureole Posted October 10, 2007 Share Posted October 10, 2007 Set a parent div, for the sake of example make it width:200px; height:100px; margin:0 auto; Make two more divs inside it and each needs to be float:left; width:100px; height:50px; ... that will work. Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-366476 Share on other sites More sharing options...
Warptweet Posted October 10, 2007 Author Share Posted October 10, 2007 Sorry, doesn't work. Look here.... www.warptweet.com/ultimate www.warptweet.com/ultimate/style.css Thats the page, and the style.css sheet. Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-366490 Share on other sites More sharing options...
Aureole Posted October 10, 2007 Share Posted October 10, 2007 There isn't even any float:left; in your CSS. ??? Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-366495 Share on other sites More sharing options...
cmgmyr Posted October 10, 2007 Share Posted October 10, 2007 #wrapper{ width:400px; margin:0px auto; } #div1{ width:200px; float:left; } #div2{ width:200px; float:left; } <div id="wrapper"> <div id="div1">Something here</div> <div id="div2">Something else here</div> </div> Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-366520 Share on other sites More sharing options...
Warptweet Posted October 11, 2007 Author Share Posted October 11, 2007 Doesn't work ??? www.warptweet.com/ultimate Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-366619 Share on other sites More sharing options...
bronzemonkey Posted October 11, 2007 Share Posted October 11, 2007 It's because your container div's width is set to 100%, i.e., the complete width of the browser window. You need to change the width of the container element as Aureole suggested. Read some css tutorials at w3cschools. Link to comment https://forums.phpfreaks.com/topic/72559-solved-centering-layout/#findComment-366654 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.