[gelöst] Bulletproof: Wie fixe Breite einstellen?

Hier können Probleme und alles andere in Deutscher Sprache gelöst werden.
Post Reply
maxfli55
Regular
Posts: 202
Joined: Wed Apr 04, 2007 3:31 pm
Location: Südschweden
Contact:

[gelöst] Bulletproof: Wie fixe Breite einstellen?

Post 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
Last edited by maxfli55 on Tue Nov 18, 2008 9:22 pm, edited 1 time in total.
yellowled
Regular
Posts: 7111
Joined: Fri Jan 13, 2006 11:46 am
Location: Eutin, Germany
Contact:

Re: Bulletproof: Wie fixe Breite einstellen?

Post 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
Post Reply