1. add this to your css:
#tagline {
display:none;
}
2. Add this to your css:
p {padding:.4em}
Printable View
http://cybernet-online.net/zencart/i...=index&cPath=1
Sorry to be demanding, but one other thing.
How can I make the product Info/product description algin to the left or even better justified.
Thanks
Hi
I have successfully (well nearly!) installed the Cherry Zen template. But when i make a change to the stylesheet.css file located in zencart/includes/templates/cherry_zen/css I dont see the changes reflected in my site (just trying to change the background colour)
BUT when I change the same stylesheet.css file name to stylesheet1.css then I see me background colour change.
Can someone explain why its doing this, I would have thought that by changing the file name, it would be ignored and pick up the standard css stylesheet ?
Thanks
John
John,
Just a guess (working in the dark here). Did you change the chmod on the .css file before you made the edits? Did you look at the .css file after you made the change to see if the file was actually updated? Close the .css after your changes, then open again to see if your edits are still there.
If chmod is not set to 777, any change you make to the .css wil not be processed (and if set too low, won't even save the change to the .css file)
Replace the sections below in stylesheet.css with the following:
Now, the left and right will always have white space, unless you use a wider logo, or make the site the same width as the logo. You can change the width of the site in this section of the stylesheet:Code:#navMain {
float:right;
width:750px;
line-height:normal;
height:32px;
}
#navMain ul {
float:right;
list-style:none;
}
#navMain li {
display:inline;
}
#navMain a {
float:left;
text-decoration:none;
}
#navMain a span {
float:left;
display:block;
padding: 7px 15px 0 15px;
text-align:center;
width:90px;
cursor:pointer;
height:25px;
}
Code:#nw {
width:80%; /* main site width; if you'd prefer a fixed width site, enter the width in px here. */
max-width:1300px; /* prevents the main content from getting wider than 1300px in sites other than IE */
min-width:1000px; /* this prevents the main content from getting smaller than 1000px in browsers OTHER THAN IE. You can make this as small as 800px, BUT any smaller than that, and the top header menu will break into two lines. Also, if you make this width 800px, you will need to make sure your product image on the product info page is no wider than 190px */
}
/* IE only. Controls Width of Site and Main Content*/
* html #nw {
width:expression((d=document.compatMode=="CSS1Compat" ? document.documentElement : document.body) && (d.clientWidth > 1300? "1300px" : d.clientWidth > 1048? "80%" : d.clientWidth < 1048? "1000px" : "80%")); /* this prevents the site from getting smaller than 1000px or wider than 1300px in IE */
}