pascale
pascale

Reputation: 35

Adjust width of horizontal slide menu

I am using a template that has a built-in horizontal slide menu, but it slides too far (for my taste). I have inspected it with dev tools, and I can change the width from 650px (400px looks good), but it leaves grey area where the menu used to be.

What am I missing?

http://www.cultcitychi.com/

Upvotes: 0

Views: 76

Answers (1)

Fahad Hasan
Fahad Hasan

Reputation: 10506

Please add the following code at the bottom of your stylesheet, I've tested it and it's working perfectly:

@media screen and (min-width: 768px) {

    .sidebar-open .site {
        left: -400px !important;
    }

    .slide-menu, .single .slide-menu {
        width: 400px !important;
    }

}

Upvotes: 1

Related Questions