Suche im Forum:
Suchen


Autor Nachricht
Beitrag28.08.2010 um 23:20 (UTC)    
Titel: Navigations Heading

Hallo Leute,
ich habe jetzt ein anderes Problem!
Wie bekomm ich in mein Desin ein Nav_Heading rein?

Hier mein Code:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
<link rel="shortcut icon" href="http://img.webme.com/pic/a/anime-streamz/header.png" type="image/vnd.microsoft.icon" />
<title> - Home</title>
<style type="text/css">
<!--
#extraDiv1 {display: none;}
#extraDiv2 {display: none;}
#extraDiv3 {display: none;}
#extraDiv4 {display: none;}
#extraDiv5 {display: none;}
#extraDiv6 {display: none;}
#pre_header {display: none;}
#post_header {display: none;}
#pre_content {display: none;}
#nav_heading{display: none;}
div.header{display: none;}
h1#title{display: none;}
h2#title span {display: none;}
a{
color:#4A9AF6;
text-decoration: none;
font-size:13px;}

a:hover {
color: #000000;
font-size: 13px;
text-decoration: none;}

a:link {
color: #4A9AF6;
font-size: 13px;
text-decoration: none;}

a:active {
color: #FFFFFF;
font-size: 13px;
text-decoration: none;}

a:visited {
color: #4A9AF6;
font-size: 13px;
text-decoration: none;}



*{ padding: 0; margin: 0; }

body {
background-color: #115676;
background-image: url(http://s1.directupload.net/images/100828/r7xogisv.jpg);
background-repeat: repeat-x; }


#header_container {
position: absolute;
left: 50%;
top: 0px;
margin-left:-500px;
width: 949px;
height:120px;
background-color:#343434;
background-image:url(http://s5.directupload.net/images/100828/ony9k3zd.jpg);
color:#FFFFFF;
font-size:1px;
border-left: 1px solid #000000;
border-right: 1px solid #000000;
}

#nav_container{
position: absolute;
left: 50%;
top:149px;
margin-left: -500px;
width: 170px;
height: 1150px;
background-color:#ffffff;
background-image:url(http://s1.directupload.net/images/100829/9vcc32o4.jpg);
background-repeat: repeat-x;
border-bottom:1px solid #000000;
border-left:1px solid #000000;
border-top:1px solid #ffffff;
}

ul#nav{
width: 130px;
padding: 0px;
margin: 0px;}

li.nav_element{
list-style-type: none;
position: relative;
padding:0px;
width: 115px;}

li.nav_element a{
display: block;
width: 145px;
margin-left: 10px;
padding:4px;
font-weight: bold;
text-decoration: none;
text-align: center;
color:#000000;
background-image:url(http://s7.directupload.net/images/100829/k62hhdd5.png);
border-bottom: 1px solid #ffffff;}
li.nav_element a:hover{
color: #000000;
background-color:#;
background-image:url();}


#content {
position: absolute;
left: 50%;
top: 149px;
margin-left:-330px;
width: 760px;
height: 1130px;
padding:10px;
color: #000000;
font-size:13px;
background-color:#ffffff;
background-image:url();
border-bottom:1px solid #000000;
border-right:1px solid #000000;
border-top:1px solid #ffffff;;
overflow:auto;}


<style type="text/css" media="screen">
body

{
font-family: Verdana, sans-serif;
font-size: 14px;
overflow: auto;
padding: 10px;
margin: 0px;
}

ul, li
{
list-style-type: none;
padding: 0px;
margin: 0px;
}
li a
{
padding-right: 20px;padding-top: 5px;
}

div.menu
{
position: absolute;
z-index: 3;
top: 120px;
left: 50%;
margin-left:-500px;
width:1200px;
}

.menu li
{
width: 317px;
float: left;
}

.menu a
{
border-right: 1px solid #000000;
border-left: 1px solid #000000;
background-color: #000000;
background-image: url(http://s7.directupload.net/images/100829/7mkowpph.jpg);
text-decoration: none;
text-align: center;
font-weight: bold;
cursor: pointer;
margin: 0px;
display: block;
height: 25px;
color: #000000;
}

.menu a:hover
{
background-color: #000000;
background-image: url(http://s10.directupload.net/images/100829/i2ypiyly.jpg);
}

#smenu1, #smenu2, #smenu3, #smenu4
{
font-size: 14px;
display: none;
width: 10px;
float: left;
}

#smenu1 a, #smenu2 a, #smenu3 a, #smenu4 a
{
font-weight: bold;
padding-top: 5px;
border-top: 0px;
cursor: pointer;
color: #FFFFFF;
}
</style>

<script type="text/javascript">

function montre(id)
{
with (document)
{
if (getElementById)
getElementById(id).style.display = 'block';
else if (all)
all[id].style.display = 'block';
else
layers[id].display = 'block';
}
}
function cache(id)
{
with (document)
{
if (getElementById)
getElementById(id).style.display = 'none';
else if (all)
all[id].style.display = 'none';
else
layers[id].display = 'none';
}
}
</script>

<div class="menu">
<li><a onmouseout="cache('smenu1');" onmouseover="montre('smenu1');" href="URL"> Anime-Serien</a>
<ul onmouseout="cache('smenu1');" onmouseover="montre('smenu1');" id="smenu1">
</ul>
</li>
<li><a onmouseout="cache('smenu2');" onmouseover="montre('smenu2');" href="URL"> Allgemein</a>
<ul onmouseout="cache('smenu2');" onmouseover="montre('smenu2');" id="smenu2">
<li> </li>
</ul>
</li>
<li><a onmouseout="cache('smenu3');" onmouseover="montre('smenu3');" href="URL"> Anderes</a>
<ul onmouseout="cache('smenu3');" onmouseover="montre('smenu3');" id="smenu3">
<li> </li>
</ul>
</li>
</div>


Hoffe es kann mir einer helfen

mfg
Beitrag28.08.2010 um 23:40 (UTC)    
Titel:

Warum ein navHeading, wenn du eine Horizontale Navigation eingebaut hast?

Und deine Seite scheint mir in eine illegale Richtung zu gehen...

Gamesdownload-> CoD? Rolling Eyes


ComicBase


Zuletzt bearbeitet von comicbase am 29.08.2010, 00:40, insgesamt einmal bearbeitet
Beitrag29.08.2010 um 10:08 (UTC)    
Titel:

Weil ich auch eine Linke hab...
Ich code das Design auch nur....
Beiträge der letzten Zeit anzeigen:   


Powered by phpBB © 2001, 2005 phpBB Group
Deutsche Übersetzung von phpBB.de