I have a header.php that I am trying to create a menu for. The “menu” consists of 3 colored boxes and in those color boxes I’d like to put the text that links to the other pages. No matter what I try I simply can’t get the text in the colored boxes (images). This is what I have so far for the “base code”.
<html>
<link rel="stylesheet" href="/header_media/header.css" type="text/css" />
<body>
<!--THIS IS THE LOGO-->
<div id="logo">
<img src="/header_media/GTextured.png" width="75" height="50" hspace="0" vspace="0"/>
</div>
<div id="logo">
<img src="/header_media/shapeimage.png" style="position: relative; top: -40px; left: 90px;">
</div>
<!--THIS IS THE MENU SYSTEM-->
<div>
<div id="menu">
<img src="/header_media/red.png" width="100" height="25" style="position: relative; top: -40px; left: 300px;">
<img src="/header_media/green.png" width="100" height="25" style="position: relative; top: -40px; left: 301px;">
<img src="/header_media/blue.png" width="100" height="25" style="position: relative; top: -40px; left: 302px;">
</div>
</body>
</html>
Thanks for the help!
1 Answer