Need help with stylesheet

Discussion in 'HTML & Website Design' started by Subesh, Aug 11, 2008.

  1. #1
    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.
     
    Subesh, Aug 11, 2008 IP
  2. newmannewy

    newmannewy Active Member

    Messages:
    349
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    58
    #2
    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
     
    newmannewy, Aug 11, 2008 IP
  3. ronakbhagdev

    ronakbhagdev Peon

    Messages:
    251
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #3
    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
     
    ronakbhagdev, Aug 11, 2008 IP
  4. SibTiger33

    SibTiger33 Peon

    Messages:
    203
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    yep above works

    good quick answer buddy
     
    SibTiger33, Aug 12, 2008 IP