LOL - no problem, im not sure if I am losing the plot as far as this is concerned.
What I have done is mixed my external CSS file with PHP so that the CSS styling can be changed on the website (with use of a form).
That all works and is cool (can change colour scheme) but the links that change (different image links) do not act as links i.e. you cannot click them.
Ive been trying other ways also e.g:
#rightLink1
{
width:120px;
height:50px;
border:thin solid #000000;
z-index:0;
background: URL(<?php echo $links; ?>);
}
a.rightLink1:link
{
width:120px;
height:50px;
border:thin solid #000000;
background-image:url(<?php echo $links; ?>);
}
a.rightLink1:hover
{
background: URL(<?php echo $links2; ?>);
}
And this in the HTML:
<div id="rightLink1">
<a class="rightLink1" href="http://127.0.0.1/links.php"></a>
</div>
Cheers
John