Huge gap between header and content? SOLVED!

Nov 01, 2007 09:47

Working on the layout for hollow_art. And there's this big gap between the content and the header. I'm pretty craptacular when it comes to CSS, but I've tried everything I can think of, and I can't get it to go away. ( My custom stylesheet code. )

page:backgrounds, sidebar:text:colors, page:alignment, sidebar:headers:colors

Leave a comment

Comments 11

av8rmike November 1 2007, 14:20:00 UTC
I'm not sure where the big gap is, but if it's the one under "Recent Entries | Archive ...", you could try changing the margin here:
#content {margin-top: 40px;}
I'm still seeing the Chopsticks header, which you can remove with this:
#header {background-image: none;}

Reply

laurasue November 1 2007, 14:22:40 UTC
Thanks for the reply, I appreciate it. :)

But the gap is still there. Is my new header at least showing up now? :-\

Reply

laurasue November 1 2007, 14:30:41 UTC
Ugh. Upon looking at it with IE, I've found that my background color for my content isn't showing up either. So, apparently I have more problems than I originally thought.

How it looks on opera and firefox.

Reply

av8rmike November 1 2007, 14:56:07 UTC
Sorry, I meant that you should change the 40px in #content to something smaller.
I have no idea why the background color isn't working in IE, but you could try this instead of setting it in #content:
#page {background-color: #c6c6c6;}

Reply


av8rmike November 1 2007, 17:53:17 UTC
...as well as using my own div image?
What does this mean?

Reply

laurasue November 2 2007, 02:14:51 UTC
Sorry, should have been clearer. XD On the sidebars, there is a small divider, two little blue bars that came with the chopsticks layout. I don't want those bars, if possible - I'd like to nix them, or use my own image.

Reply

av8rmike November 2 2007, 02:47:04 UTC
This will remove the borders completely:
.widget-header {
border-top: none;
}You can't use an image in the border, but you can use one as a background to the sidebar headers. Look at any of the Cityscape, for instance, to see what it looks like. For instance, you could do something like:
.widget-header {
border-top: none;
background: url(IMAGE URL) repeat top left #COLOR;
}Just substitute your own image URL and color.

Reply

laurasue November 2 2007, 05:19:11 UTC
Thank you very much for all of your help man. :) You answered all my questions. You rock. <3

Reply


Leave a comment

Up