Jump to content

Styling Input Textfield


ainoy31

Recommended Posts

Hello-

I am probably overlooking this but I can not change the background color of my input textfields using a stylesheet.

 

Here is the code of the stylesheet:

.textfield
{
   background-color: #CCCCCC;
}

 

then my form is:

<input type="text" class="textfield" name="test">

 

It just stays that default yellowish color.  Much appreciation.

Link to comment
https://forums.phpfreaks.com/topic/112140-styling-input-textfield/
Share on other sites

That should work, so if it doesn't, it means that you probably have something else that has a higher specificity level than that one.

 

Try changing your css to input.textfield. If that doesn't work, then its time to install the firebug add-on for firefox (which you should do regardless) and get some more specific information. If the background color is being overpowered by something else, firebug will show the css you have in your post as being crossed out, and will show what css is being used instead, and where it is coming from.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.