• I am currently re-design our website and I would like to split the footer into four sections. When I try to do it the sections go underneath each other instead of side by side,
    I hope somebody can help 🙂

    Example:

    |content 1|content 2|content 3|content 4|

Viewing 1 replies (of 1 total)
  • Moderator cubecolour

    (@numeeja)

    If you have divs or other block-level elements you can make them go alongside each other by giving them a width value & floating them in css.

    eg:

    .footer-widget {
    	width: 200px;
    	float: left;
    }
Viewing 1 replies (of 1 total)

The topic ‘Splitting Footer’ is closed to new replies.