Jump to content

Form Style


NolanDubyu

Recommended Posts

I have never tried to style a form with hidden attributes, but for the life of me I cannot figure this out. I have tried adding a class, etc. to the hidden inputs, but still nothing. Any form of style I add

seems to just effect the outer parameters of the actual form.

 

 

 

 

<form id="search" name="search" form method="get" action="find_search.php">

 

<input type= "text" name= "q" value="" />

<input type="hidden" name= "cat" value="" />

<input type="hidden" name= "time" value="0" />

<input type="hidden" name="letter" value="" />

<input type="hidden" name="offset" value="0" />

<input type="hidden" name= "type" value="quick" />

<input type="submit" value="Search" />

 

</form>

 

 

 

#search {

width:50%;

padding:10px;

outline:none;

height:36px;

}

 

.focusField {

border:solid 2px #73A6FF;

background:#EFF5FF;

color:#000;

}

 

.idleField{

background:#EEE;

color:#6F6F6F;

border: solid 2px #DFDFDF;

}

 

 

Thanks in advance!

Link to comment
https://forums.phpfreaks.com/topic/274650-form-style/
Share on other sites

No, that would not be the case.

 

In the bits of code above you have not applied any styles to the input fields. So, I must assume you are trying to apply those styles through Javascript. You do have one class, "search", which is applied to the form element - and that makes no sense. The "form" is not a visual element that is displayed. If you mean for those properties to be applied to the INPUT elements of the form - then you need to specify that.

 

#search input
{
   width:50%;
  padding:10px;
  outline:none;
  height:36px;
}

Link to comment
https://forums.phpfreaks.com/topic/274650-form-style/#findComment-1413392
Share on other sites

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.