Promospace not full width
- Posted by jennifer (14) Offline
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:
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
<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
Please Log in or Create an account to join the conversation.
- Posted by jennifer (14) Offline
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
<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" >
Please Log in or Create an account to join the conversation.
- Posted by andy (759) Offline
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 :
with
10 years 11 months ago #3
by andy
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;
}
Please Log in or Create an account to join the conversation.
- Posted by jennifer (14) Offline
- Posted by andy (759) Offline