Hi there theremotedr,
on all your pages you will find this code...
Code:
<style media="screen">
body {
background-image: url(http://theremotedoctor.co.uk/m-images/background.png);
font: 1em/150% arial, helvetica, sans-serif;
}
#marquee {
height: 3em;
border-radius: 0.5em;
border: 2px solid #000000;
overflow: hidden;
background-color: #0099ff;
}
#marquee p {
width: 38em;
line-height: 3.5em;
margin: 0;
font-size: 0.8em;
font-weight: bold;
white-space: nowrap;
animation: marquee 12s linear infinite;
}
@keyframes marquee {
0% {margin-left: 100%;}
100% {margin-left: -38em;}
}
</style>
You should remove the highlighted bit.
Also note that you really should put all internal CSS, like this, into external file.
It will greatly simplify your HTML files.

coothead
Bookmarks