Okay so I have this site 5wear.com. I just finished redesigning it but in the stylesheet I've been looking for hours to change something but can't find it. The problem is that on 5wear.com right beside the pictures, the text is black. I need to change this text colour to white. I know this might be really simple for the php gurus here so that's why I'm asking. Btw it runs the oscommerce script so maybe that will help. Thanks.
hmm where do i start.. to be honest its all a bit of a mess. go into your CSS stylesheet.css and add: color:#dddddd; to the BODY tag As there is no color set in there for the main site text. but this means its setting the text all over ur site.. so then u need to change the text where it says "select your country" + drop down items.. Thing is it all needs re-doing.. as theres too many conflicting things.. And far too much code in the template.. like: <p style="font-size:10px;font-family:Verdana, Arial, Helvetica, sans-serif;padding-top:5px;height:40px;margin:0;"> All that nonsense should be in CSS file and called in via class. ----- To clairfy what i can see: add color:#ddd; to BODY tag add color:#666; to <span style="padding-left:15px;font-size:10px;font-family:Verdana, Arial, Helvetica, sans-serif;"> for country select etc.. and dont forget ur drop down boxes
Hi, Find this code in stylesheet.css file TD.smallText, SPAN.smallText, P.smallText { font-family: Verdana, Arial, sans-serif; font-size: 12px; color: #FFFFFF; } Replace it with TD.smallText, SPAN.smallText,.smallText p { font-family: Verdana, Arial, sans-serif; font-size: 12px; color: #FFFFFF; } Done