Hi,
folgendes,
ich bastel grad an ner Hp für meine Klasse und habe gerade folgendes Problem:
ich habe ein css-file für die gesamte Page erstellt und das dann durch:
im <head> eingefügt.
Jetzt will ich aber noch ein zweites Css-file für die Navi-liste einfügen...wie mach ich das??
Ich geb euch ma eben den Quelltext:
html
HTML
<html>
<head
Auf dieser Seite....
...bla bla bla
...bla bla bla
...bla bla bla
</div>
<div id="footer">
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="999"><span class="Stil4"> <span class="Stil5"> <span class="Stil6">
<marquee>
<FONT FACE="Helvetica" color=#FFFFFF> +++ News-Leiste +++ </FONT>
</marquee>
</span> </span> </span></td>
</tr>
</table>
</div>
</div>
</body>
</html>
Alles anzeigen
das Css-file für die Page
Code
#container
{
width: 90%;
margin: 10px auto;
background-color: #fff;
color: #333;
border: 1px solid gray;
line-height: 130%;
}
#top
{
padding: .5em;
background-color: #ddd;
border-bottom: 1px solid gray;
}
#top h1
{
padding: 0;
margin: 0;
}
#leftnav
{
float: left;
width: 160px;
margin: 0;
padding: 1em;
}
#content
{
margin-left: 200px;
border-left: 1px solid gray;
padding: 1em;
max-width: 36em;
}
#footer
{
clear: both;
margin: 0;
padding: .5em;
color: #333;
background-color: #ddd;
border-top: 1px solid gray;
}
#leftnav p { margin: 0 0 1em 0; }
#content h2 { margin: 0 0 .5em 0; }
Alles anzeigen
und das soll für die navi-liste sein (bekomm ich aber nich eingebunden)
Code
#navlist ul
{
list-style-type: none;
text-align: left;
}
#navcontainer ul li a
{
background: transparent url(images/list-off.gif) left center no-repeat;
padding-left: 15px;
text-align: left;
font: normal 11px "Lucida Grande", "Lucida Sans Unicode", verdana, lucida, sans-serif;
text-decoration: none;
color: #999;
}
#navcontainer ul li a:hover
{
background: transparent url(images/list-on.gif) left center no-repeat;
color: black;
}
#navcontainer ul li a#current
{
background: transparent url(images/list-active.gif) left center no-repeat;
color: #666;
}
Alles anzeigen
könnt ihr mir die bearbeiteten Codes bitte posten? hab (noch) nich so viel Ahrnung von dem ganzen
THX