Promospace not full width

My promospace module is not spanning the full page width. When I check the code it appears that it is not actually moving directly underneath the body tag like it is suppose to. This is what the code looks like:
<div id="main">
    <div class="cleared reset-box"></div>
<div class="box sheet">
    <div class="box-body sheet-body">
<div class="header">
<div class="bar nav">
<div class="nav-outer">
<div class="nav-wrapper">
<div class="nav-inner">
      <div class="hmenu-extra2">
<!-- PromoSpace module - Another Quality Freebie from TemplatePlazza -->
<div id="tppromospace" >

How can I correct this issue and make it display the full page width?
stjameshouse.org/news
10 years 11 months ago #1 by jennifer

Please Log in or Create an account to join the conversation.

Code:

<body>
<div id="main">
<div class="cleared reset-box"></div>
<div class="box sheet">
<div class="box-body sheet-body">
<div class="header">
<div class="bar nav">
<div class="nav-outer">
<div class="nav-wrapper">
<div class="nav-inner">
<div class="hmenu-extra2">
<!-- PromoSpace module - Another Quality Freebie from TemplatePlazza -->
<div id="tppromospace" >
10 years 11 months ago #2 by jennifer

Please Log in or Create an account to join the conversation.

Hi jenoden,
it's because your www.stjameshouse.org/templates/stjamesho...mp2/css/template.css
defines the <body> tag width.
Open that file with your favorite editor then replace the lines :
body
{
   padding: 0;
   margin-left:auto;
   margin-right: auto;
   min-width: 960px;
   width: 960px;
   color: #141414;
   background-color: #FAFAFA;
}

with
body
{
   padding: 0;
   margin-left:auto;
   margin-right: auto;
   min-width: 960px;
  /*  width: 960px; */
   color: #141414;
   background-color: #FAFAFA;
}
10 years 11 months ago #3 by andy

Please Log in or Create an account to join the conversation.

Thanks! Worked!
10 years 11 months ago #4 by jennifer

Please Log in or Create an account to join the conversation.

You're welcome :)
10 years 11 months ago #5 by andy

Please Log in or Create an account to join the conversation.

Powered by Kunena Forum