Link to home
Start Free TrialLog in
Avatar of sam15
sam15

asked on

webpage_buttons

Does anyone have anyy suggestions or articles or pictures for using buttons on a web applications.

The ergular html submit button is small and default color/font may not be appealing.

i am looking for nice ideas on size, background color, shape, font.

the page background we use is light yellow.
Avatar of JasonPJohnson
JasonPJohnson
Flag of United States of America image

I always find an Icon set I like to look at istockphoto.com
Avatar of sam15
sam15

ASKER

i looked at this site. but how does it work.
if i see an icon i like do i copy that and use that on html form as an image or do i create a similar thing using CSS.

i noticed that colors and shpaes look different depending on desktop/laptop and operating system and browser used.

i was trying to find a site specific for HTML forms that shows different button shapes and colors where you can set the page background color and see hoe it will look like. sort of simulation.
ASKER CERTIFIED SOLUTION
Avatar of JasonPJohnson
JasonPJohnson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of Loganathan Natarajan
Loganathan Natarajan
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Try this , its very simple

<input type="submit" value="Hit me up!!!" class="imagebutton" />

and css as

.imagebutton{
    border: none;
    background: url('Images/image.png') no-repeat top left;
    padding: 4px 8px;
}
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial