Page 1 of 1
2 images in the header
Posted: Thu Apr 27, 2006 10:53 pm
by jtheeuwes
How can I add 2 images in the header? One that should be aligned left and another that should be aligned right and move when the window is resized.
I did put the first one in the "layout" style sheet.
Re: 2 images in the header
Posted: Fri Apr 28, 2006 5:43 pm
by Dr.CSS
what you want is a 'liquid' / 'strechy' page so you need to do most of it in '%' .
#header{width:**%}
#left{float:left;width:**;height:**;margin:**;padding:**;}
#right{float:right; bla bla bla}
the widths for left & right can be **px, **%, margins can be same,, px, or %,
you may have to futz around for IE,,
HTH
mark
Re: 2 images in the header
Posted: Sat Apr 29, 2006 2:22 pm
by jtheeuwes
Thanks Marc, I try that.