WordPress comments form

I have removed the border of form items on my site but I want them on my blogs comment form!
http://bradburyembroidery.com/houses4cash/blog/hello-world/#comments

I have tried:

Read More
#commentform input 
{
border:thick;
}

but firebug keeps thinking its saying border:thick none;

Can anyone point me in the right direction?

Thanks

Related posts

Leave a Reply

2 comments

  1. The border property is short hand for setting three different properties.

    • border-style
    • border-width
    • border-color

    You have set the border-style to none, set it to something else.

    #commentform input {
      border: thick black solid;
    }