http://www.braeness.co.uk/newstore/
Here is my code from the header.tpl and stylesheet.css - I'm probably missing something really obvious as I am pretty much a total beginner.
Code: Select all
<div id="header">
<?php if ($logo) { ?>
<div id="logo"><a href="<?php echo $home; ?>"><img src="<?php echo $logo; ?>" title="<?php echo $name; ?>" alt="<?php echo $name; ?>" /></a></div>
<?php } ?>
<div class="telephone">Telephone: 123 456 789</div>
<div class="delivery"><a href="http://www.braeness.co.uk/newstore/delivery">Free Delivery on Orders Over £50</a></div>
Code: Select all
}
.delivery a{
font-family: 'Coming Soon', cursive;
color: #9DD9E8 !important;
font-size: 18px;
text-decoration: none;
margin-left: 260px;
margin-top: 20px;
position:absolute;
z-index: 222;
}
.delivery a:hover{
font-family: 'Coming Soon', cursive;
color: #CB212C !important;
font-size: 18px;
text-decoration: underline;
margin-left: 260px;
margin-top: 20px;
position:absolute;
z-index: 222;
}
Thanks for your help, Melanie