
Originally Posted by
angelicdezigns
Hi Becky,
Thanks very much for that. I will try and do it tommorow :-)
Could I just confirm that the text below is something I have to add myself to the css stylesheet, as I did have a quick browse over the stylesheet but couldnt find the text below anywhere. If I have to add it myself, do you know roughly where abouts I would put it, as I havent really had a lot to do with stylesheets.
.listingDescription {
text-align: left;
color: red;
}
Much Appreciated, and thanks for your time.
Kindest Regards
Nikki
Not a problem Nikki! :-)
Yes, you have to add the entire block as it is displayed in red in the above post. Except replace the word "red" with the color you want (for instance, black is #000000).
In terms of where you put it, it might be easiest to set up your own "My Additions" section near the top....
Code:
body {
blah blah
}
/* My Additions */
.listingDescription {
text-align: left;
color: red;
}
If you put that whole red section in beneath the Body tag in your CSS file, it should work for you. There are other schools of thought on how to organize a CSS file, but since this is an addition rather than a modificaton you might as well make it easy to find!
I'll be around tomorrow afternoon, so if you have problems post them here and if I'll be happy to help if I can.
Cheers,
Becky