Find this declaration in the stylesheet.css
#navEZPagesTop a {
color: #fff; /*change this to suit*/
}
Printable View
Ok. That did it. I was [FONT=Comic Sans MS]this[/FONT] close when I changed this section of the stylesheet....Quote:
Find this declaration in the stylesheet.css
#navEZPagesTop a {
color: #fff; /*change this to suit*/
}
Thanks so much.Quote:
#navEZPagesTop {
margin: 0;
padding: 6px 0 6px 0;
background: url(../images/tier2_bg.gif) repeat-x;
font-size: 1em;
font-weight: bold;
color: #771b5a;
BTW - I love the way the sideboxes go away on the products pages! That is way kewl!!!
Tina
How do get the banner to be on the main page only, you can see my test site here www.lextechs.com/Testsite what i am trying to do is get a banner or have banner 3 only show on the main page and not the other pages
NOTE: This tip can be used with any template!
Open includes/templates/comstock/common/tpl_main_page.php
Find the following section of code at around line(s) 112 - 115
and replace with the following section of codePHP Code:
<?php
if (SHOW_BANNERS_GROUP_SET3 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET3)) {
if ($banner->RecordCount() > 0) {
?>
PHP Code:
<?php
if ($this_is_home_page && SHOW_BANNERS_GROUP_SET3 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET3)) {
if ($banner->RecordCount() > 0) {
?>
You the man that worked like a charm thanks for you help
Question- Link is ip because site isn't live but here it is:
http://74.52.222.34/~exclusiv/index.php?main_page=
I JUST LOVE this template but the color scheme doesn't match well... so I want to fine tune it only. The layout rocks and is everything I hoped for but I need help with the following:
(NOTE- this is only the 3rd template i have installed first was success, 2nd was failure -trying to get fixed and this one was a success so I am new to this I guess is the point)
1. I would like to remove the gray banner near the top behind the graphic
2. I would like to change the colors of the boxes,
3- I would like to make the banner go across the top
4- add back ground
Here is our current site on a horrible cart: www.exclusivelyknd.com but want to try to somewhat mimic the site as far as color scheme etc....
I appreciate any help and if I am asking in the wrong place please send me packing (with a map to the right location of course lol)
Thanks!
Brandy aka newbie!
(I have been operating a zen cart www.luvingmammadiapers.com for a year but these new sites are the first i am doing the building of it... the other was built for me and a big headache :( )
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
Save the file and upload to your server.Code:#navAccountWrapper {
margin: auto;
background: url(../images/header_bg_2.jpg);
font-weight: bold;
color: #ccccff;
height: 26px;
width: 907px;
}
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:
and replace with the following:Code:#logoWrapper {
margin: 0 auto;
padding: 0;
width: 907px;
height:100px;
background: url(../images/header_bg.jpg) no-repeat #ccccff;
}
Find the following declaration:Code:#logoWrapper {
margin: 0;
padding: 0;
height:144px;
background: url(../images/header_bg.jpg) no-repeat #ccccff;
}
and replace with the following:Code:#headerWrapper {
margin: 0 auto;
padding: 0;
background: #ccccff;
}
4- add back groundCode:#headerWrapper {
margin: 0;
padding: 0;
background: #ccccff;
width:100%;
}
open includes/templates/comstock/css/stylesheet.css
add the highlighted portion to the body declaration.
save the file and upload to your server.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;
}
Hope this helps
holy cow you totally rock!!!
I chose 2 of your templates because I LOVED THEM and now i am thankful... YOU ARE GOOD!
On the one I need to modify in my graphics program- i don't have one do you recommend a certain one?
off to make those changes :)