XF 1.3 for fixed design?

Tayfun

Member
for i get fixed style i added some codes in my design. is it true?

Screen shot 2014-05-25 at 7.29.03 PM.webp

or only contains?

Code:
width: 992px;
margin: 0 auto;
 
For a fixed width, the code is correct.
You may want to consider using max-width though, or have a child style with a max-width, to enable the site to work on narrow screens.
Code:
max-width: 992px;
margin: 0 auto;
box-sizing: border-box;
 
Top Bottom