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!

Button Maker

Status
Not open for further replies.

Skittle

ISP
Sep 10, 2002
1,528
US
I need to create a set of small buttons to show the text 'add', 'delete' and 'modify'. Is there a piece of software that allows a graphical simpleton like myself type in text and sepecify background colour, text colour and font size for a button style. I've tried messing about with paintshop pro but never get very good results. Probably because of my lack of skill.
 
You could use form submit buttons and use CSS to set those properties.
BDC.
 
Hmm.

I didn't know you could change the look of a submit button
using CSS. Do you have an example where the font and background colour are changed?

thanks.
 
<html><head>
<title>Nice colors</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
<style type=&quot;text/css&quot;>
<!--
INPUT {
background-color: #BB00CC;
color: white;
font-family: arial, verdana, ms sans serif;
font-weight: bold;
font-size: 8pt
}
-->
</style>
</head>
<body bgcolor=&quot;#FFFFFF&quot; text=&quot;#000000&quot;>
<FORM NAME=&quot;oForm&quot; ACTION=&quot;repost.asp&quot; METHOD=&quot;post&quot;>
<input type=&quot;submit&quot; name=&quot;Submit&quot; value=&quot;Add&quot;>
<input type=&quot;submit&quot; name=&quot;Submit&quot; value=&quot;Delete&quot;>
<input type=&quot;submit&quot; name=&quot;Submit&quot; value=&quot;Modify&quot;>
</FORM>
</body>
</html>
BDC.
 
Try Spot It 3.0 from
It's ideal for the graphically challenged. Very easy to set up. If you want to create up, over, down states you just save again with a different name (after you've changed a colour or something).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top