HTML beginner |
|
Je kunt in de broncode kijken, maar goed, dit is het stukkie eigenlijk:
[** Edit **] Hier nog een screentje: http://img401.i...eemdj2.jpg
<table border="0" cellpadding="0" cellspacing="0" style="background-color: #FFFFFF; padding: 0px; border: 1px solid black; width: 980px; height: 100%;">
<tr>
<td colspan="3" style="width: 980px; height: 42px; background: url(img/a.png) repeat-x; text-align: right;">
<a class="toplink" href="?"> Contact </a>
<a class="toplink" href="?"> Copyright </a>
</td>
</tr>
<tr>
<td style="background: url(img/header.jpg); width: 980; height: 100px;" colspan="3" valign="middle">
</td>
</tr>
<tr>
<td colspan="3" style="background: url(img/a.png) repeat-x;">
<a class="toplink" href="index.php"> Home </a>
<a class="toplink" href="forum.php"> <img src="img/forum.png" border="0"> </a>
<a class="toplink" href="status.php"> Status </a>
<a class="toplink" href="leden.php"> Ledenlijst </a>
</td>
</tr>
<tr>
<td style="background: #333333; width: 200px; float: left; padding: 5px;" valign="top" rowspan="1">
<?php
include("menu.php");
?>
<br>
</td>
<td align="left" valign="top" style="background-color: #333333; width: 780px; float: left; padding: 5px;">
<!-- Naja dan zit hier dus de content -->
</td>
</tr>
<tr>
<td colspan="2" style="background: url(img/a.png) repeat-x; height: 36px; border-top: 1px solid black; line-height: 36px; color: #DDDDDD; text-align: center;">
CopyRight </td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" style="background-color: #FFFFFF; padding: 0px; border: 1px solid black; width: 980px; height: 100%;"> <tr> <td colspan="3" style="width: 980px; height: 42px; background: url(img/a.png) repeat-x; text-align: right;"> <a class="toplink" href="?"> Contact </a> <a class="toplink" href="?"> Copyright </a> </td> </tr> <tr> <td style="background: url(img/header.jpg); width: 980; height: 100px;" colspan="3" valign="middle"> </td> </tr> <tr> <td colspan="3" style="background: url(img/a.png) repeat-x;"> <a class="toplink" href="index.php"> Home </a> <a class="toplink" href="forum.php"> <img src="img/forum.png" border="0"> </a> <a class="toplink" href="status.php"> Status </a> <a class="toplink" href="leden.php"> Ledenlijst </a> </td> </tr> <tr> <td style="background: #333333; width: 200px; float: left; padding: 5px;" valign="top" rowspan="1"> <?php include("menu.php"); ?> <br> </td> <td align="left" valign="top" style="background-color: #333333; width: 780px; float: left; padding: 5px;"> <!-- Naja dan zit hier dus de content --> </td> </tr> <tr> <td colspan="2" style="background: url(img/a.png) repeat-x; height: 36px; border-top: 1px solid black; line-height: 36px; color: #DDDDDD; text-align: center;"> CopyRight </td> </tr> </table>
Naja tis misschien een beetje lange lap met code, maar goed...
Het gaat denk ik om dit stukkie:
<td colspan="3" style="background: url(img/a.png) repeat-x;">
<a class="toplink" href="index.php"> Home </a>
<a class="toplink" href="forum.php"> <img src="img/forum.png" border="0"> </a>
<a class="toplink" href="status.php"> Status </a>
<a class="toplink" href="leden.php"> Ledenlijst </a>
</td>
<td colspan="3" style="background: url(img/a.png) repeat-x;"> <a class="toplink" href="index.php"> Home </a> <a class="toplink" href="forum.php"> <img src="img/forum.png" border="0"> </a> <a class="toplink" href="status.php"> Status </a> <a class="toplink" href="leden.php"> Ledenlijst </a> </td>
Je ziet hier nog CSS (toplink):
<style>
a.toplink{
/*color: #D1D3D7; */
color: #FFFFFF;
text-decoration: none;
background: url(img/a.png);
height: 42px;
padding-left: 10px;
padding-right: 10px;
line-height: 38px;
text-align: center;
}
a:hover.toplink{
/*color: #484E56; */
color: #FFFFFF;
background: url(img/a_hover.png);
height: 42px;
}
</style>
<style> a.toplink{ /*color: #D1D3D7; */ color: #FFFFFF; text-decoration: none; background: url(img/a.png); height: 42px; padding-left: 10px; padding-right: 10px; line-height: 38px; text-align: center; } a:hover.toplink{ /*color: #484E56; */ color: #FFFFFF; background: url(img/a_hover.png); height: 42px; } </style>
Thanks! |