[css-d] Margin (?) problem with menu.

2008-01-22 Thread rollandburn
Hi everyonecan anyone spot the Waldo in my css on this page... my  
dev site is athttp://public.alliancepacific.com/Corporate/About_Us

I am having a hard time finding out why the top level UL's appear to  
have a margin which does not allow the menu to squeeze up to the header.

If anyone could give me a hand I would really appreciate it.

Thanks!
rolland


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Margin (?) problem with menu.

2008-01-22 Thread David Laakso
rollandburn wrote:
 Hi everyonecan anyone spot the Waldo in my css on this page... my  
 dev site is athttp://public.alliancepacific.com/Corporate/About_Us

 I am having a hard time finding out why the top level UL's appear to  
 have a margin which does not allow the menu to squeeze up to the header.

 If anyone could give me a hand I would really appreciate it.

 Thanks!
 rolland
   




Reduce the height set on the header to around 146px.

Best,
~dL


-- 
http://chelseacreekstudio.com/

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Margin (?) problem with menu.

2008-01-22 Thread rollandburn
jeezthat was too easy.   Sometimes when you stare at something for  
hours on end its hard to see the simple solutions.

thanks alot David.


On 22-Jan-08, at 11:01 AM, David Laakso wrote:

 rollandburn wrote:
 Hi everyonecan anyone spot the Waldo in my css on this page...  
 my  dev site is athttp://public.alliancepacific.com/Corporate/About_Us

 I am having a hard time finding out why the top level UL's appear  
 to  have a margin which does not allow the menu to squeeze up to  
 the header.

 If anyone could give me a hand I would really appreciate it.

 Thanks!
 rolland





 Reduce the height set on the header to around 146px.

 Best,
 ~dL


 -- 
 http://chelseacreekstudio.com/


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Margin (?) problem with menu.

2008-01-22 Thread Ray Leventhal
rollandburn wrote:
 Hi everyonecan anyone spot the Waldo in my css on this page... my  
 dev site is athttp://public.alliancepacific.com/Corporate/About_Us
 
 I am having a hard time finding out why the top level UL's appear to  
 have a margin which does not allow the menu to squeeze up to the header.
 
 If anyone could give me a hand I would really appreciate it.
 
 Thanks!
 rolland
 
 
 From what I can see, it's the h3 element in sidebar which has the space 
above it, just below the menu:

you have:
#sideBar h3 {
border-bottom:1px solid #CC;
color:#003462;
font-size:1.1em;
margin: 10px; /* adds 10px all around */
padding:0px;

I changed that commented line (in Firebug) to

margin: 0 10px;

And things looked a bit more 'together'.

I'm sure more advanced minds will have better answers :)

HTH,
-Ray
-- 
Non scholae sed vitae discimus
=

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/