• falkbusse

    (@falkbusse)


    Hi all,

    I was just trying to float the top menu to the right side and failed miserably. This is what I tried:

    #top-navigation {
    float: right;
    }

    But nothing happens. Any hints?

    Thanks!

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

    (@somewhatrounded)

    Hey falkbusse,

    .sf-menu {
        float: right;
    }

    ^will do the trick, but it will also float the lower menu to the right. If you’d like to only float the top menu to the right, try:

    #top-navigation .sf-menu {
        float: right;
    }

    (If you were using Chrome’s tools/Firefox tools to inspect the css, it sometimes helps just to dig a bit deeper if the first attempt doesn’t change anything)

    Hope that helps!

    Theme Author Richie KS

    (@rkcorp)

    yeap or

    #custom #top-navigation .sf-menu {
        width:auto;
        float: right;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘float top menu right’ is closed to new replies.