MyBB.de Forum
unterforen - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Theme-Diskussionen (https://www.mybb.de/forum/forum-84.html)
+--- Thema: unterforen (/thread-17868.html)

Seiten: Seiten: 1 2 3


RE: unterforen - micha3000 - 13.02.2011

ahhh ok der #container ist da wo ich das bislang eingefügt habe Smile jetzt weiß ichs aber was soll ich auswählen damits passt?


RE: unterforen - linwinman - 13.02.2011

Siehe Beitrag #10...


RE: unterforen - micha3000 - 13.02.2011

Danke habe es hinbekommen habe den Post von linwinman nicht gesehen nachdem ich gepostet hatte Wink habe ich als erledigt markiert danke!


RE: unterforen - linwinman - 13.02.2011

Oh Wunder, dein "global.css" ist immer noch zerschossen...

s. auch > http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fdevil-sat.info%2Fcache%2Fthemes%2Ftheme2%2Fglobal.css&profile=css21&usermedium=all&warning=1&lang=de


RE: unterforen - micha3000 - 13.02.2011

häää wie jetzt? wie meinst du dass?


RE: unterforen - linwinman - 13.02.2011

Hast du dir einmal die verlinkte Seite und dein "global.css" angesehen?

Auszug aus Quelltext:
Code:
body {
    background: #efefef;
    color: #000;
    font-family: Verdana, Arial, Sans-Serif;
    font-size: 13px;
    text-align: center; /* IE 5 fix */
    line-height: 1.4;
}
.alt_forumlar {

    list-style: none;

    margin: 0;

    padding: 0;

}



.alt_forumlar li {

    width: 50%;

    float: left;

}


a:link {
    color: #026CB1;
    text-decoration: none;
}

a:visited {
    color: #026CB1;
    text-decoration: none;
}

a:hover, a:active {
    color: #000;
    text-decoration: underline;
}

#container {
    background: #fff;
    border: 1px solid #e4e4e4;
    margin: auto auto;
    padding: 20px;
    text-align: left;
}


}


}

.alt_forumlar li {
width: 50%; float: left;
}

color: #000000;
    width: 95%;
}

.alt_forumlar li {
width: 50%; float: left;
}


}
...



RE: unterforen - micha3000 - 13.02.2011

na da ist dieses Komische nbsp oder was sorry kenne mich CSS nicht so aus...

wie kann ich alles wieder richtig machen?
SO PASST DAS JETZT?


RE: unterforen - StefanT - 13.02.2011

Nö: Wink
(13.02.2011, 21:46)linwinman schrieb: s. auch > http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fdevil-sat.info%2Fcache%2Fthemes%2Ftheme2%2Fglobal.css&profile=css21&usermedium=all&warning=1&lang=de




RE: unterforen - micha3000 - 13.02.2011

wie bekomme ich das denn jetzt wieder hin? iwie bin ich zu blöd....


RE: unterforen - linwinman - 13.02.2011

SUCHE in "Admin-CP > Themes > dein Theme > global.css > Stylesheet bearbeiten: Fortgeschrittene Methode" den folgenden KPL. CODE-BLOCK:
Code:
body {

width: 95%;
background: #fff;
border: 1px solid #e4e4e4;
color: #000000;
margin: auto auto;
padding: 20px;
text-align: left; /* IE 5 fix */
}

.alt_forumlar {
list-style: none;
margin: 0;
padding: 0;
}

.alt_forumlar li {
width: 50%;
float: left;
}


a:link {
    color: #026CB1;
    text-decoration: none;
}

a:visited {
    color: #026CB1;
    text-decoration: none;
}

a:hover, a:active {
    color: #000;
    text-decoration: underline;
}

#container {
    background: #fff;
    border: 1px solid #e4e4e4;
    margin: auto auto;
    padding: 20px;
    text-align: left;
}


}


}

.alt_forumlar li {
width: 50%; float: left;
}

color: #000000;
    width: 95%;
}

.alt_forumlar li {
width: 50%; float: left;
}


}

ERSETZE diesen durch
Code:
body {
    background: #efefef;
    color: #000;
    font-family: Verdana, Arial, Sans-Serif;
    font-size: 13px;
    text-align: center; /* IE 5 fix */
    line-height: 1.4;
}

a:link {
    color: #026CB1;
    text-decoration: none;
}

a:visited {
    color: #026CB1;
    text-decoration: none;
}

a:hover, a:active {
    color: #000;
    text-decoration: underline;
}

#container {
    width: 95%;
    background: #fff;
    border: 1px solid #e4e4e4;
    color: #000000;
    margin: auto auto;
    padding: 20px;
    text-align: left; /* IE 5 fix */
}
    
.alt_forumlar {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alt_forumlar li {
    width: 50%;
    float: left;
}