Hoody
Administrator
- Joined
- Oct 24, 2007
- Messages
- 6,391
- Location
- Bowling Green, Ohio
- Name
- Steven Hoodlebrink
- Years of Experience
- 20
Why not use CSS for the buttons instead of images?
Code:
a.learn-more {
display:block;
background-color:#000;
/* Or a slight gradient */ background: -moz-linear-gradient(top, #424242 0%, #000000 100%);
background: -webkit-linear-gradient(top, #424242 0%,#000000 100%);
background: linear-gradient(to bottom, #424242 0%,#000000 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424242', endColorstr='#000000',GradientType=0 );
padding: 10px 15px;
text-align:center;
color:#fff;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}