![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
I'm trying to create a layout by adding custom CSS to the Tabula Rasa style.
Does anybody happen to know which element I need to remove the margin from in order to get rid of the gap between the navigation strip and the header? I've tried everything I could think of already ...
Does anybody happen to know which element I need to remove the margin from in order to get rid of the gap between the navigation strip and the header? I've tried everything I could think of already ...
no subject
Date: 2011-01-24 07:18 am (UTC)no subject
Date: 2011-01-24 07:31 am (UTC)no subject
Date: 2011-01-24 07:35 am (UTC)no subject
Date: 2011-01-24 07:43 am (UTC)no subject
Date: 2011-01-24 07:44 am (UTC)Bonus: you can use Firebug to edit the CSS and tweak with it live in case you want to test out changes, too.
no subject
Date: 2011-01-24 07:52 am (UTC)no subject
Date: 2011-01-24 12:27 pm (UTC)body{margin: 0; padding:0; } --> removes some of the space between canvas and navigation strip
#canvas{margin: 0; padding: 0; overflow: hidden; } --> makes the whole canvas box 'visible', thereby 'removing' the space between header and navigation strip
#canvas .inner{margin: 0; padding: 0; overflow: hidden;} --> removes space between header and top of canvas box and and top of content box
Hope this works for you as well!
no subject
Date: 2011-01-24 06:16 pm (UTC)body { margin: 0; }
no subject
Date: 2011-01-25 12:31 am (UTC)