1. I would like to remove the gray banner near the top behind the graphic
open includes/templates/comstock/css/stylesheet.css
find the following declaration and delete the highlighted portion
Code:
#navAccountWrapper {
margin: auto;
background: url(../images/header_bg_2.jpg);
font-weight: bold;
color: #ccccff;
height: 26px;
width: 907px;
}
Save the file and upload to your server.
2. I would like to change the colors of the boxes,
The are graphics which you will have to change; they are located in
includes/templates/comstock/images/
sidebox_content_bg.gif
sidebox_header_bg.gif
You will need to edit the images in your graphics editor in order to change the colors.
3- I would like to make the banner go across the top
open includes/templates/comstock/css/stylesheet.css
find the following declaration:
Code:
#logoWrapper {
margin: 0 auto;
padding: 0;
width: 907px;
height:100px;
background: url(../images/header_bg.jpg) no-repeat #ccccff;
}
and replace with the following:
Code:
#logoWrapper {
margin: 0;
padding: 0;
height:144px;
background: url(../images/header_bg.jpg) no-repeat #ccccff;
}
Find the following declaration:
Code:
#headerWrapper {
margin: 0 auto;
padding: 0;
background: #ccccff;
}
and replace with the following:
Code:
#headerWrapper {
margin: 0;
padding: 0;
background: #ccccff;
width:100%;
}
4- add back ground
open includes/templates/comstock/css/stylesheet.css
add the highlighted portion to the body declaration.
Code:
body {
margin: 0;
padding: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #000000;
background: url(../images/your_background_image.gif) #ccccff;
}
save the file and upload to your server.
Hope this helps
Bookmarks