Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CSS class

Status
Not open for further replies.

madHatter1

Technical User
Feb 27, 2003
54
GB
Hello all

I hope to get a little help here.

I have the words submit and reset inside clickable buttons which are goverened by the CSS class .searchbox.

<style>
.searchbox {
border:solid 1 black;
etc}
</style>


The font color is white (&quot;Submit&quot; and &quot;Reset&quot; are colored white) and I wish to change it to another color. How would I do that in the script itself? That is, how I would do it here:

<p><input type=&quot;submit&quot; name=&quot;submit&quot; class=&quot;searchbox&quot; value=&quot;Submit&quot; size=&quot;6&quot;></input>

<input type=&quot;reset&quot; name=&quot;clear&quot; class=&quot;searchbox&quot; value=&quot;Reset&quot; size=&quot;6&quot;></input>
</p>

Grateful thanks for any support.

Hatter
 
<style>
.searchbox {background-color: black;
border:solid 1 black;
etc}
</style> [Hammer]
Nike Failed Slogans -- &quot;Just Don't Do It!&quot;
 
Hi Hatter, if you are just wanting to change the font colour on the buttons then this is what you're after. You just need to amend the style as below:

<style>
.searchbox {
border:solid 1 black;
color:yellow;
etc}
</style>

If you dont want the colour of the text on all your buttons to change then you can do it inline if you wish. i.e..

<p><input type=&quot;submit&quot; name=&quot;submit&quot; class=&quot;searchbox&quot; value=&quot;Submit&quot; size=&quot;6&quot; style=&quot;color:yellow&quot;></input><input type=&quot;reset&quot; name=&quot;clear&quot; class=&quot;searchbox&quot; value=&quot;Reset&quot; size=&quot;6&quot; style=&quot;color:yellow&quot;></input>
</p>

Pete
 
Hello Pete

That's great!

Very many thanks to you (and you DeeCee)!

Cheers

Hatter
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top