Hallo, Gast! (Registrieren)

Letzte Ankündigung: MyBB 1.8.40 veröffentlicht (28.05.26)


Benutzer, die gerade dieses Thema anschauen: 1 Gast/Gäste
unterforen
#11
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?
Zitieren
#12
Siehe Beitrag #10...
Zitieren
#13
Danke habe es hinbekommen habe den Post von linwinman nicht gesehen nachdem ich gepostet hatte Wink habe ich als erledigt markiert danke!
Zitieren
#14
Oh Wunder, dein "global.css" ist immer noch zerschossen...

s. auch > http://jigsaw.w3.org/css-validator/valid...=1&lang=de
Zitieren
#15
häää wie jetzt? wie meinst du dass?
Zitieren
#16
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; } } ...
Zitieren
#17
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?
Zitieren
#18
Nö: Wink
(13.02.2011, 22:46)linwinman schrieb: s. auch > http://jigsaw.w3.org/css-validator/valid...=1&lang=de

[Bild: banner.png]

Bitte die Foren-Regeln beachten und im Profil die verwendete MyBB-Version angeben.
Zitieren
#19
wie bekomme ich das denn jetzt wieder hin? iwie bin ich zu blöd....
Zitieren
#20
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; }
Zitieren