Hi i have the following code which is styleing a series of buttons. However i wish to change one of these to a text link so that search engines can more easily spider there way through i still however need it to look identical to the other buttons. Can anyone advise as to the best method or point me in the right direction to where i can find articles on this subject? thanks
I have attached the isolated code with both the button and a text link.
<--!style sheet-->
<style type="text/css">
<!--
* {
font-family : Verdana, Arial, Helvetica, Sans-Serif;
font-size : x-small;
}
div.topnavbar .submitShort {
background-color: #077244;
border-color : #E3F8E3 #31536C #31536C #C1E4BF;
cursor: pointer;
cursor: hand;
border-style : solid;
border-width : 1px;
color : #FFF;
padding : 1px;
font-weight : bold;
}
-->
</style>
<!-- main body-->
<body>
<div class="topnavbar">
<input class="submitShort" type="submit" Value="View All Products">
<br /> <br />
<div class="topnavbar"><a href="textbutton" class="submitShort">View All Products</a></div>
-Gus
I have attached the isolated code with both the button and a text link.
<--!style sheet-->
<style type="text/css">
<!--
* {
font-family : Verdana, Arial, Helvetica, Sans-Serif;
font-size : x-small;
}
div.topnavbar .submitShort {
background-color: #077244;
border-color : #E3F8E3 #31536C #31536C #C1E4BF;
cursor: pointer;
cursor: hand;
border-style : solid;
border-width : 1px;
color : #FFF;
padding : 1px;
font-weight : bold;
}
-->
</style>
<!-- main body-->
<body>
<div class="topnavbar">
<input class="submitShort" type="submit" Value="View All Products">
<br /> <br />
<div class="topnavbar"><a href="textbutton" class="submitShort">View All Products</a></div>
-Gus