
Originally Posted by
swelter83
Hi Chris,
I've read your post, lots of info to take it, which is okay, i myself am new to Zen-Cart. From what I have found there are no mods for this... I've been customizing my entire shop by hand thus far. The mods I have found don't seem to help in such a "specific" way as you would like them too, rather they are more general in nature. So i've found that editing the files by hand helps with learning the CASS/PHP coding.
I am currently trying to figure out how to position the text in my Side box Heading, but am having little luck with it. I'm sure it's there, just need some help, if anyone reads this forum and could help us or if you could help me Chris I would greatly appreciate it!
If you have a question, perhaps I may be able to help you if it's an issue I have already tackled.
-Swelter83
I'm not a coder, but have been customizing my site for a few months now. Was using OsCommerce and zen is actually easier once you get the hang of it. Almost everything in zen in terms of positioning things and so forth is done from the stylesheet and templates. I didn't know squat about either one, but through reading the forums, asking questions, and doing A LOT of trial and error I have found my way.
Moving text in your side boxes is done via the stylesheet.css file. Look for the following portion of your style sheet (This is the default one in zen):
Below that are the elements that control the positioning, colors, fonts, ect for the various side boxes. To move the text in the heading look for different style names with "Heading" in it example:
Code:
h3.leftBoxHeading, H.leftBoxHeading a,
h3.rightBoxHeading, h3.rightBoxHeading a {
font-size: 12px;
color: #006600;
}
#manufacturersHeading, #currenciesHeading, #musicgenresHeading, #recordcompaniesHeading, #searchHeading, #search-headerHeading {
font-size: 12px;
color: #006600;
}
.leftBoxHeading, .centerBoxHeading, .rightBoxHeading {
margin: 0em;
border-bottom: 1px solid #D5E3D7;
background-color: #D1D7DC;
background-image: url(../images/cellpic1.gif);
padding: 5px 2px;
}
All these control something with the side box headings. I learned to change things by changing one of the elements and then seeing what it did on the site. I then made a note of it for future reference.
Another good tool is TopStyle (Paid) or TopStyle Lite (Free) they are very helpful in modifying CSS.
If any of you need specific help then post here or send me a PM and I will try and help. Try to get it yourself though as you will learn much faster and it will stick with you.
Good Luck