Add this so your CSS:
- Code: Select all
.divlink {
cursor:pointer;
width:200px;
height:20px;
background-color: #EFEFEF;
border: 1px solid #000000;
padding: 5px;
text-align: center;
}
And this in your HTML:
- Code: Select all
<a href="http://www.devppl.com">
<div class="divlink">
Visit DEVPPL
</div>
</a>


