Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Fixed width and Vanilla 1.0
First I would like to say thank you to everyone here. This is a great program and I learned a lot about it reading the forum.
My first question is how can I fix the width of the entire layout? I have been able to fix the width to the body but the search and sign in is outside the width that I set.
My second question is after fixing the width how can I center it on the page?
Thank you very much for your help!
Mike
0
This discussion has been closed.
Comments
body {
margin:0 auto;
padding:0px;
background:#ccc url('panelfade.gif') top left repeat-y;
width:750px;}
#Body { background:#fff; }
To position the signin correctly, add width:750px; and margin:0 auto; to #Session and take out the entry right:18px; which is forcing it to that position from the right-hand edge.
If you use the web-developer taskbar for firefox browser, you can display the ID and class info for the individual page elements using Information > Display Id & Class Details or Information > Display Element Information. Using Edit CSS you can try out the changes to achieve what you want.