I wanted to know how to change the font colors for specific word sections. Right now it looks like it's all controlled by "body" in default.css so it changes the color for everything if I make a change there. For example how do I change the font for "Featured Products" to blue, "Merchant" to grey, prices to green, "Review this Product" to yellow, etc. Also how do I change the link colors for specific words too? They are all blue right now.
And how do I set a margin width for the site?
Thanks
Hi,
Each of the main components of the site has it's own class specified in the DIV element containing that section, so those can be used in default.css to control the font etc. For example, the Featured Products output is generating within <div class='featured'>, so you can set the font for that section using:
.featured {
color: blue;
}
If you're not sure what class selectors to use; check the files in the /html/ directory, and you will see the opening DIV on the first line...
Hope this helps!
Cheers,
David.