I know there is an easy way to create css or HTML button by simply using one of those "css button generator" tools but I wan to learn how to do it myself. How to create a css button with css style and everything?
Mind blowing SEO improving and Google rank increasing Signature Rotator SEO Tool.
How to creat CSS Button?
CSS button is nothing more than HTML a href attribute with a bit of css style to make it look like a button! Try this one that I've quickly made just change style!
Add this to your <body> tag:
Add this to your <head> tag or to your css style sheet:
Add this to your <body> tag:
PHP Code:
<a class="mybutton" href="URL">CSS Button Text</a>
Add this to your <head> tag or to your css style sheet:
PHP Code:
<style type="text/css">
.mybutton {
background: none repeat scroll 0 0 #009933;
border-radius: 5px;
color: #FFFFFF;
padding: 2px 5px;
text-decoration: none;
}
.mybutton:hover {
background:#009900;
}
</style>
Thanks Maya again very much for your help. I am terrible at this and my CSS knowledge is pretty basic so these answers help me big time

You can also use CSS3 box-shadow property to add shadow to your button and to make pop!
Code:
box-shadow: 1px 1px 3px #323232;
Similar Topics:
- Load Facebook like button on mouseover
- Disable back button SEO?
- Facebook like button SEO is it still worth it?
- Twitter button counter gone?
- Twitter follow vs tweet button?
- PayPal donation button earnings?
- Twitter follow vs tweet button?
- PayPal donation button?
- Google+ Plus button important for SEO?
- Add PayPal button to my website?
User(s) browsing this thread: 1 Guest(s)