Autor
Nachricht
wewatch
17.08.2009 um 12:57 (UTC) Titel: Design CSS: Counter und Navigation ausblenden lassen
Hallo HpBk user,
Ich habe folgendes Problem: In meinem css design hab ich ganz am ende
Code: #counter{display: none;}
#nav_container{display: none;}
stehen.
Doch obwohl das da ist wird die navigation immernoch angezeigt, und der Zähler auch, was soll ich machen? (Bitte nicht sagen dass ich das extra counter einfach deaktivieren soll
)
Gruß
WeWatch
Zuletzt bearbeitet von wewatch am 17.08.2009, 14:22, insgesamt einmal bearbeitet
↑
der-bielefeld-club
Premium
Support-Team
Wohnort: Bielefeld
17.08.2009 um 13:21 (UTC) Titel:
Füge mal diesen Code ein:
Zitat: div#nav_container{display: none;}
div#counter{display: none;}
mfg Dominik
______________
Besucht die offizielle Hilfeseite vom Homepage-Baukasten:
Iceblue Generator |
Red Generator |
Butterfly Generator
↑
creationarea
17.08.2009 um 14:48 (UTC) Titel:
Also wegen der Navi würd ich mal sagen du hast zwar den container ausgeblendet, jedoch die Navi an sich nicht. Dafür musst Du noch folgendes hinzufügen:
Zitat: li.nav_element{display: none;}
li.nav_element a{display: none;}
und wegen dem Counter...
Wieso deaktivierst Du ihn nicht einfach
MFG Matz
↑
wewatch
17.08.2009 um 15:03 (UTC) Titel:
Zitat: und wegen dem Counter...
Wieso deaktivierst Du ihn nicht einfach Very Happy Wink
Ok Danke euch beiden jetzt ist es wieder in ordnung!
↑
wewatch
17.08.2009 um 15:06 (UTC) Titel:
Hmm ok aber jetzt funktioniert es auf einmal wieder nicht
Bitte schaut euch den Code mal an:
Code: h1#title{display: none;}
h2#title span {display: none;}
div.header{display: none;}
li.nav_element{list-style-type: none;}
body {background-color:#ffffff;}
a{color:#000080; font-size: 15px; text-decoration: none;}
a:hover {color: #000080; font-size: 15px; text-decoration: none;}
a:link {color: #000080; font-size: 15px; text-decoration: underline;}
a:active {color: #000080; font-size: 15px; text-decoration: none;}
a:visited {color: #000080; font-size: 15px; text-decoration: none;}
* { padding: 0; margin: 0; }
#Design04 {
margin: 0 auto;
width: 922px;}
#Header_oben {
height: 186px;
width: 900px;
background: #3C3C3C;
background-image:url(http://img.webme.com/pic/w/wewatch/header001.png);
color: #FFFFFF;
border: 0px solid #6E6E6E;
margin: 0px 0px 0px 0px;
padding: 10px;
float: left;}
#content {
height: 493px;
width: 475px;
background: #ffffff;
background-image:url(http://img.webme.com/pic/w/wewatch/css.content.png);
color: #000000;
border: 2px solid #ffffff;
margin: 0px 0px 0px 0px;
padding: 10px;
display: inline;
float: left;
#sidebar_container {
height: 340px;
width: 180px;
background: #ffffff;
background-image:url();
color: #000000;
border: 1px solid #ffffff;
margin: 0px 0px 0px 0px;
padding: 10px;
float: right;
overflow:auto;}
#Feld_unten {
width: 921px;
background: #3C3C3Cffffff;
color: #000000;
clear: both;
border: 0px solid #6E6E6E;
margin: 0px 0px 10px 0px;
padding: 10px;}
div#nav_container{display: none;}
div#counter{display: none;}
li.nav_element{display: none;}
li.nav_element a{display: none;}
Wie muss ich das denn richtig einsetzten?
↑
creationarea
17.08.2009 um 19:27 (UTC) Titel:
also was ich als aller erstes machen würde, ist den code zu ordnen.
Zitat: h1#title{display: none;}
h2#title span {display: none;}
div.header{display: none;}
li.nav_element{list-style-type: none;}
li.nav_element{display: none;}
li.nav_element a{display: none;}
div#nav_container{display: none;}
div#counter{display: none;}
body {background-color:#ffffff;}
a{color:#000080; font-size: 15px; text-decoration: none;}
a:hover {color: #000080; font-size: 15px; text-decoration: none;}
a:link {color: #000080; font-size: 15px; text-decoration: underline;}
a:active {color: #000080; font-size: 15px; text-decoration: none;}
a:visited {color: #000080; font-size: 15px; text-decoration: none;}
* { padding: 0; margin: 0; }
#Design04 {
margin: 0 auto;
width: 922px;}
#Header_oben {
height: 186px;
width: 900px;
background: #3C3C3C;
background-image:url(http://img.webme.com/pic/w/wewatch/header001.png);
color: #FFFFFF;
border: 0px solid #6E6E6E;
margin: 0px 0px 0px 0px;
padding: 10px;
float: left;}
#content {
height: 493px;
width: 475px;
background: #ffffff;
background-image:url(http://img.webme.com/pic/w/wewatch/css.content.png);
color: #000000;
border: 2px solid #ffffff;
margin: 0px 0px 0px 0px;
padding: 10px;
display: inline;
float: left;
#sidebar_container {
height: 340px;
width: 180px;
background: #ffffff;
background-image:url();
color: #000000;
border: 1px solid #ffffff;
margin: 0px 0px 0px 0px;
padding: 10px;
float: right;
overflow:auto;}
#Feld_unten {
width: 921px;
background: #3C3C3Cffffff;
color: #000000;
clear: both;
border: 0px solid #6E6E6E;
margin: 0px 0px 10px 0px;
padding: 10px;}
↑
wewatch
18.08.2009 um 06:41 (UTC) Titel:
Gut jetzt klappt alles wieder, vielen danke euch allen
↑
der-bielefeld-club
Premium
Support-Team
Wohnort: Bielefeld
↑