My CSS layout shows perfectly on my 1024px wide screen, but shifts unexpectedly when the screen width is 1280px...
I'm staring for days at my CSS code now, but cannot seem to find the cause of it. You can see for yourselves the problem in action: http://74.52.160.129/~temp/.
Thanks in advance for your assistance!
1. you might want to use a
1. you might want to use a container, or wrapper. OR give everything a width of 990px, and use margin: 0 auto; to keep everything centered.
2. your menu should be a UL list.
I do use a wrapper: <div
I do use a wrapper:
<div id='pagewidth' > <div id='wrapper' class='clearfix' > <div id='twocols' class='clearfix'> <div id='maincol' > Main Content Column </div> <div id='rightcol' > <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /></div> </div> </div> </div>
no, one that contains
no, one that contains everything.
Excellent; I have created a
Excellent; I have created a new container in my style.css; and I used it in such a way that it contains my whole website.
#main_container { width: 990px; margin: 0 auto; }
Seems to be working fine now; thanks for that!
Could you explain into more detail what you meant with your remark "your menu should be a UL list." because I don't understand what you are trying to say with that.
UL lists are much more easier
UL lists are much more easier to style and work with then a bunch of link tags, and its more semantic! check out the site below..
Thanks for the links; the
Thanks for the links; the menu links in my example are generated by my CMS, but I will have a look at that later... Thanks again! 
