Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all,
Vanilla are planning an update to the site on April 24th (next Wednesday). It is a major PHP8 update which is expected to boost performance across the site. The site will be down from 7pm and it is expected to take about an hour to complete. We appreciate your patience during the update.
Thanks all.

Font Problem....

  • 16-07-2009 1:47pm
    #1
    Registered Users Posts: 801 ✭✭✭


    Hi, just wondering if one of you pro's could help me out, I have a problem with a contact form that I created from the emailmeform.com site....

    It worked fine on the last site I used but now the font seems to be in white?!? I have checked the source code etc.. and changed everything eventhings that I usually wouldnt bother with as I thought I was losing my mind :)

    I created a new one as well and its the same problem?!?

    Heres the link http://www.westlakelodgestudios.com/contact.htm just would be happy if the type within the form was black? can anyone see the problem??

    Cheers


Comments

  • Moderators, Category Moderators, Motoring & Transport Moderators Posts: 21,238 CMod ✭✭✭✭Eoin


    Your style sheet has the following:
    td, textarea, input, select (line 5)
    
    {
    font-family: Tahoma;
    font-size: 10px;
    color: #ffffff;
    font-weight: normal;
    line-height: 14px;
    }
    

    Change this:
    color: #ffffff;
    To:
    color: #000;


  • Registered Users Posts: 801 ✭✭✭PMI


    you_rock__you_rule.jpg

    thanks my head can rest now.... (walk away with tail between legs now) ha :)


  • Moderators, Category Moderators, Motoring & Transport Moderators Posts: 21,238 CMod ✭✭✭✭Eoin


    Actually, I just realised that this will affect the other elements as well.

    Leave it as it is, and then underneath it just put:

    input
    {
    color: #000;
    }

    Edit - here's something I said in another thread, which may be of use if you're going to be doing more tweaking:
    me wrote:
    Download the web developer tool bar for Firefox. Click on the CSS menu and select "View Style Information". Now just move the mouse around the page and the element you're hovering over will have a red box around it. Click on the content div that is too narrow and you will be shown the CSS style being applied to it, so then you just have to edit the CSS file accordingly.

    You can probably find it manually as well, but if you're thinking of making more changes, it's worth while downloading this tool.

    There's also a very good one for IE, and I think this one allows you to change style attributes on the fly (temporarily obviously) so you can see what they look like immediately.


Advertisement