Re: css box/button - how ?
thanks weslinda,
looking at this and adding colour and a background image the block version is working better!
so here my updated code for those who want to see it,
.topnav {
width: 100%;
padding: 0;
margin: 0;
background-image: url('phone.jpg');
background-position: right;
background-repeat: no-repeat;
background-color: 55298a;
line-height:28px;
}
.topnav a:link, .topnav a:visited{
float: left;
color: white;
background-color: #55298a;
display: block;
width: 85px;
line-height:28px;
text-decoration:none;
text-transform: uppercase;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
font-weight: bold;
text-align: center;
border-right: thin solid #ffffff;
}
.topnav a:hover {
background-color: #e4d5f3;
color: #663399;
}
|