hi all here is my tiny problem...
this my menu:
<li><a href="#home" class="selected">Home</a></li>
<li><a href="#pfrs">Problems in finding <br>the ideal
school</a></li>
<li><a href="#fis">Finding the ideal school</a></li>
<li><a href="#about">My journey</a></li><br>
<li><a href="#studies">Case studies</a></li>
<li><a href="#endorsements">Endorsements</a></li>
<li><a href="#sts">Services to schools</a></li>
<li><a href="#links">Links</a></li>
<li><a href="#news1">Geoff Link in the news</a></li>
<li><a href="#contactus" class="last">Contact</a></li>
</ul>
and so my intention is that when certain link is clicked, for example links = "#links" so the css's will change otherwise it stays the same... so i thought i'll be able to solve it with this, just to find out it isnt working...
<?php if ($_GET['page'] >= fis) { ?>
<link href="template.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/layout2.css" type="text/css" charset="utf-8" />
<?php } else { ?>
<link href="template.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/layout.css" type="text/css" charset="utf-8" />
<?php } ?>
thank you all for any ideas
jou