• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

DIV´s mit Verlinkung

Status
Für weitere Antworten geschlossen.

sveka

Mitglied
Hallo,

ich bin gerade dabei eine neu Homepage zu erstellen. Nun habe ich damit begonnen die Navigation mit Grafiken zusammenzubauen. Dafür benutze ich Div´s.

style.css
HTML:
#navi_left {
	z-index:1;
	background-image:url(../images/navi_left.gif);
	height:50px;
	width:5px;
	margin-left:30px;
	margin-top:20px;
	}
	
#navi_center {
	z-index:2;
	background-image:url(../images/navi_center.gif);
	height:50px;
	width:800px;
	margin-left:35px;
	margin-top:-50px;
	}
	
#navi_right {
	z-index:3;
	background-image:url(../images/navi_right.gif);
	height:50px;
	width:5px;
	margin-left:835px;
	margin-top:-50px;
	}
	
#icon_home {
	z-index:4;
	background-image:url(../icons/home.gif);
	height:32px;
	width:32px;
	margin-left:40px;
	margin-top:-25px;
	}
	
#icon_configuration {
	z-index:4;
	background-image:url(../icons/configuration.gif);
	height:32px;
	width:32px;
	margin-left:800px;
	margin-top:-25px;
	}

index.php
PHP:
<?php
	session_start();
	require("php/connect.inc.php");
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>

<body>
<div id="navi_left"></div>
<div id="navi_center"></div>
<div id="navi_right"></div>
<div id="icon_home"></div>
<div id="icon_configuration"></div>

[...]

Nun möchte ich, dass wenn ich über das "icon_configurations" DIV gehe eine Verlinkung entsteht. Wie mache ich das am besten?? Ich hoffe Ihr habt verstanden was ich möchte. So sieht das ganze im Moment aus - Bild.
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben