Side 1 av 1

Re: Hvordan låser jeg bredden på forumet?

Lagt inn: 20. jun 2010, 20:34
av Stinus
Hei
Åpne filen som heter stylesheet.css som du finner i mappen forum/styles/subsilver2/theme/.
Let etter

Kode: Velg alt

body {
   /* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
   font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
   color: #323D4F;
   background-color: #FFFFFF;
   font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
   margin: 0;
} 
og forandres til

Kode: Velg alt

body {
   /* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
   font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
   color: #323D4F;
   background-color: #FFFFFF;
   font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
   margin: 0 auto;
   width: 1024px;
} 
Det som er forandrinen er width: 1024px;
Eller et annet tall.
Lykke til.