I managed to get it working, kind of
This is what i did:
On stylesheet.css
find
Code: Select all
body {
margin: 0px;
padding: 0px;
}
change it with
Code: Select all
body {
text-align: center;
background:#025d8a url('../image/bg5.gif') repeat-x;
margin: 0px;
padding: 0px;
}
find
Code: Select all
#container {
width: 960px;
position: relative;
margin-left: auto;
margin-right: auto;
background: #FFFFFF;
}
change it
Code: Select all
#container {
text-align: left;
width: 990px;
position: relative;
margin-left: auto;
margin-right: auto;
background: #FFFFFF;
}
find
Code: Select all
#header .div4 {
width: 940px;
padding-left: 10px;
padding-right: 10px;
height: 40px;
background: url('../image/header.png') repeat-x;
}
change it
Code: Select all
#header .div4 {
width: 990px;
/*
padding-left: 10px;
padding-right: 10px;
*/
height: 40px;
background: url('../image/header.png') repeat-x;
}
find
Code: Select all
#column_left {
float: left;
width: 180px;
margin-right: 10px;
display: inline-block;
}
#column_right {
float: right;
width: 180px;
margin-left: 10px;
display: inline-block;
}
#content {
display: inline-block;
width: 580px;
margin-bottom: 10px;
}
change it
Code: Select all
#column_left {
float: left;
width: 180px;
margin-left: 5px;
margin-right: 5px;
display: inline-block;
}
#column_right {
float: right;
width: 180px;
margin-left: 5px;
margin-right: 5px;
display: inline-block;
}
#content {
display: inline-block;
width: 580px;
text-align: left;
margin-bottom: 10px;
}
on layout.tpl find
Code: Select all
<div id="content"><?php echo $content; ?></div>
change it to
Code: Select all
<center><div id="content"><?php echo $content; ?></div></center>
That is it. I added an option to have a backround image. You can put your own image and color.
Code: Select all
background:#025d8a url('../image/bg5.gif') repeat-x;
I attached the image