Sorry I didn't mean to put float I meant padding it makes my links like so...
and if I'm not supposed to use position:relative for position how would you suggest I get my list of links to display in the correct place over my column graphic in my left layout div as it is included like so...
<div id="leftcolumn">
<?php
include('links.php');
?>
</div>
Then on links page...
<div class="links1" align="right"; div style="position:relative; top:20px; left:-10px;">
<a class"<?php getCSS("")?>" href="index.php" alt="Home" title="Home">HOME</a><br>
<a class"<?php getCSS("news")?>" href="index.php?section=news" alt="News" title="News">NEWS</a><br>
<a class"<?php getCSS("next match")?>" href="index.php?section=next%match" alt="Next Match" title="Next Match">NEXT MATCH</a><br>
<a class"<?php getCSS("club info")?>" href="index.php?section=club%info" alt="Club Info" title="Club Info">CLUB INFO</a><br>
<a class"<?php getCSS("about")?>" href="index.php?section=about" alt="About Us" title="About Us">ABOUT US</a><br>
<a class"<?php getCSS("directions")?>" href="index.php?section=directions" alt="Directions" title="Directions">GROUND DIRECTIONS</a><br>
<a class"<?php getCSS("fixtures results")?>" href="index.php?section=fixtures%results" alt="Fixtures and Results" title="Fixtures and Results">FIXTURES & RESULTS</a><br>
<a class"<?php getCSS("tables")?>" href="index.php?section=tables" alt="Tables" title="Tables">TABLES</a><br>
<a class"<?php getCSS("players")?>" href="index.php?section=players" alt="Players" title="Players">PLAYER PROFILES</a><br>
<a class"<?php getCSS("lookalikes")?>"href="index.php?section=loo kalikes" alt="Look-a-likes" title="Look-a-likes">LOOK-A-LIKES</a><br>
<a class"<?php getCSS("stats")?>"href="index.php?section=stats" alt="Stats" title="Stats">STATS</a><br>
<a class"<?php getCSS("events")?>"href="index.php?section=events" alt="Events" title="Events">EVENTS</a><br>
<a class"<?php getCSS("message board")?>"href="javascript

optastic('MessageBoard ');" alt="Message Board" title="Message Board">MESSAGE BOARD</a><br>
<a class"<?php getCSS("guestbook")?>"href="index.php?section=gues tbook" alt="Guestbook" title="Guestbook">GUESTBOOK</a>
</div>
Thanks again