Hi, I am not very good with css, but am trying to make a wordpress theme. Does anyone know how I can eliminate some of the white space between the header and the start of the content? http://joeldrapper.com?theme=darknight Thanks for your help! Joel
Hi Joel! You can set your "h2" tags with a smaller margin in your css file. You currently have the code.. h2 { margin: 30px 0 0; } Code (markup): Change the margin to a smaller size.. h2 { margin: 10px 0 0; } Code (markup): For example. This will remove some white under the header.. You could alternatively make the header smaller or even the padding of the sidebar to remove some white. Hope this helps. Matt
When I do this and test it in internet explorer, the heading goes funny on the post page. http://joeldrapper.com/2008/09/18/paid-links-good-or-bad/?theme=darknight
I solved it! It might not be the best way to do it, but I just added a class the the h2 on the single-post page, then made h2s with that class have a top margin of 30.