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.
my logo/banner
strawberries
New
Wondering what I change in vanilla.css to allow my banner more room down the page; and also to lower my navigational tabs (i.e. discussions, search, categories, etc). TIA.
http://multitrackers.com
0
This discussion has been closed.
Comments
On my 17" PowerBook with the browser window at about 70% of the screen width, it starts to repeat.
Posted: Tuesday, 2 January 2007 at 4:06PM (AEDT)
#Header { background: url(beatles.jpg); background-color: #000; }
to something like this
#Header { background: url(beatles.jpg); background-color: #000; height: 200px; }
i would also recommend that you use a pixel stretch to fix the background problem
Better to just have it not repeat IMO, just use
#Header { background:#000 url(beatles.jpg) no-repeat; height:200px; }
Also, the code that Vincent gave you has a stray comma ' in it that will break it. I see you've fixed it now
#Header ul {margin-top:26px;} div#Session {margin-top:12px;margin-right:8px;}
Did it for me. You may need to find the correct place in your CSS to put this (the Right Way to do it) or you could just stuff it in at the end of the file (the Wrong Way, but should work).
The second line makes the "Sign In" link at the top right sit on the white of the page rather than the picture header.