[email protected] Posted May 29, 2003 Posted May 29, 2003 Help! I have been up and down stylesheet.css (and other php) and cannot find the text color for the darkblue bar on the following page: https://secure.progesterone.com/web_store/d...lt.php?cPath=22 I did find "Buy Now", but the rest elude me. Thanks, in advance. David
Wizzud Posted May 29, 2003 Posted May 29, 2003 The code for producing this table is in includes/modules/product_listing.php. Round about line 40 you will see it starts to construct the header, using a class of productListing-heading, which you should be able to find in the stylesheet.css file. Regards, Wizzud "It is better to remain silent and be thought a fool, than to open your mouth and remove all doubt."
[email protected] Posted May 29, 2003 Author Posted May 29, 2003 I have made changes to what controls the background and the text, https://secure.progesterone.com/web_store/d...lt.php?cPath=21 but only the background took: ============================= TD.productListing-heading { font-family: Verdana, Arial, sans-serif; font-size: 12px; color: #FFFFFF; background: #0000CC; font-weight: bold; font-variant: small-caps; ========================== David
Guest Posted May 29, 2003 Posted May 29, 2003 Because the text is a link you need to add: TD.productListing-heading a { font-family: Verdana, Arial, sans-serif; font-size: 12px; color: #FFFFFF; font-weight: bold; font-variant: small-caps; } TD.productListing-heading a:hover { *whatever colour/font etc you want here* } to your stylesheet
Recommended Posts
Archived
This topic is now archived and is closed to further replies.