Take a look at the these styles defined at the top of your code, noting particularly any widths specified:
<div class="page_header" align="left"> <align="right"> <div class="page_header_content"><div class="page_header_logo_container">
The code in blue doesn't need to be there either, i presume you've been having a play with it.
The classes defined in this code may need looking at also:
<div class="page_menu" align="left"><div class="page_menu_content"><div class="page_menu_items">
and finally you have a table specified for the main body with 100% width:
<table border="0" cellpadding="5" cellspacing="0" width="100%" >
The site currently renders wider than 1024 which is something you want to stop. You want the site about 980px wide or 95% to sit nicely on a 1024 screen.
<div class="page_header" align="left"> <align="right"> <div class="page_header_content"><div class="page_header_logo_container">
The code in blue doesn't need to be there either, i presume you've been having a play with it.
The classes defined in this code may need looking at also:
<div class="page_menu" align="left"><div class="page_menu_content"><div class="page_menu_items">
and finally you have a table specified for the main body with 100% width:
<table border="0" cellpadding="5" cellspacing="0" width="100%" >
The site currently renders wider than 1024 which is something you want to stop. You want the site about 980px wide or 95% to sit nicely on a 1024 screen.
Comment