[css-d] Get rid of top space

2009-04-13 Thread trevor bayliss
I am trying to get rid of the space right at the top of the page but I can't seem to do it, what do I need to doo? Thank you http://tinyurl.com/clg668 __ css-discuss [cs...@lists.css-discuss.org]

Re: [css-d] Get rid of top space

2009-04-13 Thread Brian Hazelton
body margin and padding set to 0 and the first element set to margin-top 0 __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List

Re: [css-d] Get rid of top space

2009-04-13 Thread trevor bayliss
--- On Mon, 4/13/09, Brian Hazelton bdh_2...@comcast.net wrote: From: Brian Hazelton bdh_2...@comcast.net Subject: Re: [css-d] Get rid of top space To: bayliss_tre...@yahoo.com Cc: css-d@lists.css-discuss.org Date: Monday, April 13, 2009, 1:54 PM body margin and padding set to 0

Re: [css-d] Get rid of top space

2009-04-13 Thread Brian Hazelton
make p margin:0px instead of the 0 0 1em, I just tried it and that is what was screwing you up. __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ --

Re: [css-d] Get rid of top space

2009-04-13 Thread David Laakso
trevor bayliss wrote: I am trying to get rid of the space right at the top of the page but I can't seem to do it, what do I need to doo? Thank you http://tinyurl.com/clg668 It is a collapsing margin problem. #wrapperLogoNavigation { /*padding: 0px; */ padding-top: 1px; /*margin: none;

Re: [css-d] Get rid of top space

2009-04-13 Thread Tim Dawson
Try setting html margins to zero as well. I have pages with and without top gap, and that seems to be the only difference. Tim -- Tim Dawson Maolbhuidhe Fionnphort Isle of Mull PA66 6BP 01681 700718 __ css-discuss

Re: [css-d] Get rid of top space

2009-04-13 Thread trevor bayliss
Thanks Brian Elias and David David it only had one error which obviously happened between the last time I validated it- I have now sorted out margin: none instead of margin: 0px There are however some warnings there-important? Thanks