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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

<color the comman words? 1

Status
Not open for further replies.

juandiegomc

Programmer
Apr 25, 2003
60
US
Is is possible to color the command button

words.?

juandiegomcc@afirmacion.com

 
Yep
[tt]
<input type=&quot;button&quot; style=&quot;color:#00FF00;&quot; value=&quot;Green Words&quot;>
<input type=&quot;button&quot; style=&quot;color:#00FF00;background-color:#000000;&quot; value=&quot;Green Words on Black Background&quot;>
[/tt]

Never be afraid to share your dreams with the world.
There's nothing the world loves more than the taste of really sweet dreams.
 
thanks, for the tip, Dwarfthrower:

question yet to go: Can one make the label on a command button more <B> bold or bigger?

juandiegomcc@afirmacion.com
 
Sure. Just check some of the CSS referrences on the web (personally I like Most of the CSS styling applies to all the elements. So in addition to dwarfthrower's code add the following:
Code:
<input type=&quot;button&quot; style=&quot;color:#00FF00;background-color:#000000; font-weight:bold;&quot; value=&quot;Bold Green Words on Black Background&quot;>
<input type=&quot;button&quot; style=&quot;color:#00FF00;background-color:#000000; font-weight:bold; font-size:15pt;&quot; value=&quot;15pt Big Bold Green Words on Black Background&quot;>
 
Sure. Just check some of the CSS referrences on the web (personally I like Most of the CSS styling applies to all the elements. So in addition to dwarfthrower's code add the following:
Code:
<input type=&quot;button&quot; style=&quot;color:#00FF00;background-color:#000000; font-weight:bold;&quot; value=&quot;Bold Green Words on Black Background&quot;>
<input type=&quot;button&quot; style=&quot;color:#00FF00;background-color:#000000; font-weight:bold; font-size:15pt;&quot; value=&quot;15pt Big Bold Green Words on Black Background&quot;>

Hope it helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top