MyBB Community Forums

Full Version: Fix jQuery slide toggle (layout)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
After clicking on the layout, it pushes my menu down. Is it possible to make the slide toggle (float?).

I tried messing with the css here:
http://gyazo.com/5944164344bf5c91817eba570210547f

Here are pictures of the problem:
Before: http://gyazo.com/724fd397f031b302e1986ad4785fa6ee
After: http://gyazo.com/6235a2c194fe30906f34c12a3fa48655

Website: http://www.Vizzy.VisualizeEdits.com/

Do anybody know a fix?
you have to add css style for the pop-up block. see below code just as an example
.btn-slide {  
    background: #ccc;  
    position: absolute;
    top: 100px;
    left: 60px;
    z-index: 9999;
}
(2013-07-10, 05:52 PM).m. Wrote: [ -> ]you have to add css style for the pop-up block. see below code just as an example
.btn-slide {  
    background: #ccc;  
    position: absolute;
    top: 100px;
    left: 60px;
    z-index: 9999;
}

Thank you .m.!