• Resolved bozack

    (@bozack)


    i’ve noticed that my widgets are floating to the bottom of my sidebar. why is this happening and how can i get it to float to the top as opposed to the bottom of the sidebar?

    i’ve set my css to “float: top;” yet it doesn’t seem to work. any ideas?

    you can take a look here: https://black-rap.com/blog

    thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi

    In this section:style.css (line 224)

    #main #sidebar {
    background:#949494;
    border-left:1px solid;
    border-right:1px solid;
    border-top:1px solid;
    left:650px;
    position:relative;
    width:248px;
    }

    delete

    left:650px;
    position:relative;

    add
    float:right;

    that should do it.

    As FYI, there is no float: top or float: bottom, just float: left, float: right, float: none

    Thread Starter bozack

    (@bozack)

    worked like a charm!
    you are the man!
    thanks again!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘widgets floating to the bottom of sidebar.’ is closed to new replies.