
Originally Posted by
Webiter
OK, what you have on the page that works is:
Code:
<style type="text/css">
#button {list-style:none;} /*free-web-buttons.com*/
#button a{background-image:url(images/button.jpg);width:230px;height:19px;display:block;color:transparent;}
#button a:hover{background-position:left bottom;}
</style>
That means that you can save:
Code:
#button {list-style:none;} /*free-web-buttons.com*/
#button a{background-image:url(http://www.bcf.webitry.net/images/button.jpg);width:230px;height:19px;display:block;color:transparent;}
#button a:hover{background-position:left bottom;}
to a file, call it button.css and put it in the css folder.
On the page call it with:
Code:
<link rel="stylesheet" href="css/button.css" type="text/css" media="screen" />
Bookmarks