On 29/04/2009, at 8:06 AM, Erik Visser wrote:

> My questions is about the logo on this site:
> http://beta.daploosdrechtseweg.nl
>
> My question is:
> how can i lower the logo (so it sits on the black bottom border of the
> div#masthead) in a simple way.
>
>

Use absolute positioning. Something like this...

#masthead {
....
        position: relative;
}

#logo {
        position: absolute;
        bottom: 0;
        left; 0;
}


______________________________________________________________________
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/

Reply via email to