views:

52

answers:

2

Hey guys.. Check out the fading grey on top of the page and the grey for the footer here http://www.alcatel-lucent.com/wps/portal/BellLabs .. How do i get this using css... I tried using

#bgtop{
background-image:url('bg_top.JPG');
background-repeat:repeat-x;
margin-top:auto;
}

But this doesnt work.. Please help

+1  A: 

Try specifying a height

#bgtop{
background-image:url('bg_top.JPG');
background-repeat:repeat-x;
margin-top:auto;
height: 40px;
}
gnome
Perfect! Thanks!
Ram Bhat
A: 

Try giving the html the background image you want with repeat-x, it should work that way.

Naruto