Page 1 of 1
[gelöst] Bulletproof: Wie fixe Breite einstellen?
Posted: Sun Nov 09, 2008 8:12 pm
by maxfli55
s9y 1.3
BP 1.2
Wo kann ich die Breite der gesamten Seite fix einstellen?
(Wie heißt überhaupt das div in dem alle Inhalte wie Navigation, Content etc. enthalten sind?)
Gruß
maxfli55
Re: Bulletproof: Wie fixe Breite einstellen?
Posted: Sun Nov 09, 2008 10:59 pm
by yellowled
maxfli55 wrote:Wo kann ich die Breite der gesamten Seite fix einstellen?
(Wie heißt überhaupt das div in dem alle Inhalte wie Navigation, Content etc. enthalten sind?)
#wrapper, siehe index.tpl:
Code: Select all
<!-- #wrapper: this wrapper div holds the actual blog content; it can be used to -->
<!-- give the blog a width in px or % plus an additional max-width in -->
<!-- order to limit the width in high resolutions to limit the length -->
<!-- of a line -->
<div id="wrapper">
Das Colorset purple verwendet beispielsweise eine fixe Breite (siehe purple_style.css):
Code: Select all
#wrapper {
width: 944px;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 69%;
background-color: #ffffff;
border: 1px solid #823995;
margin: 0px auto;
}
YL