Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author wizzud

    (@wizzud)

    Your Memoir theme has a rule that sets .menu-item to float left (style.css, line 52)…

    .menu-item {
        float: left;
        padding-right: 20px;
    }

    The padding-right is irrelevant (it’s overridden to zero by another rule), but your problem is the float:left;.

    You need another rule that clears the float for the content of a CMW widget, for example…

    .widget_custom_menu_wizard .menu-item {
        float: none;
    }

    This is specific to CMW widgets, but you could make it specific to any widget, or to just sidebar widgets, by changing the lead class.

    Thread Starter TimC66

    (@timc66)

    Awesome, that fixed it! Thanks Wizzud!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Menu is showing sideways and not up and down’ is closed to new replies.