Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Positioning Sidebars

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #244207
    edonian
    Participant

    This is what happens when you use things like Bootstrap too often. lol.

    I just can’t seem to move my sidebar to the left of the “main content” as you can see here: http://codepen.io/edonian/pen/vKzKWB

    I tried using “float: left” But somehow it looks like the the dark gray box is overlapping the content, when I want it to move to the left but stay aligned with the content across from it.

    What on earth am I doing wrong?

    Any help is greatly appreciated!

    #244212
    Atelierbram
    Participant

    Basically floats needs to be cleared, though an extra wrapper element around the (blog)sections here (also floated) helps. Then better put those styles for floats within a media-query, to also make the layout work on smaller screens.

    Note the overflow: auto for clearing on the .wrapper in my fork of your demo:

    http://codepen.io/atelierbram/pen/akRzAv

    #244226
    edonian
    Participant

    Wow thanks! I’m such an amateur at this, but you’ve help a lot. Thank you so much!!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.