I would like to implement such design using floating CSS divs:
--------------- |Header | --------------- |Col1| Row1 | | |--------| | | Row2 | --------------- | Footer | ---------------
I searched around but found no easy way to do it.
How could i achieve this?
Thanks.
EDIT: I want to clarify my problem. I want to have two rows of images next to menu bar on the left. I am trying to use float:left for image layout.
EDIT2: Solved the problem myslef using display:inline-block for image elements instead of float:left.