userman
userman

Reputation: 23

Modal isn't staying in a fixed position - Twitter Bootstrap

For some reason, my Twitter Bootstrap modals don't seem to be working correctly. On a long page, the modal doesn't stay fixed on the screen - and is instead displayed at the top of the page.

The modals are displaying at the top instead of staying on-screen and fixed.

I hope this makes sense, and someone might know what's going wrong here. Something in the wrong place, something missing possibly?

Upvotes: 1

Views: 191

Answers (1)

tmg
tmg

Reputation: 20383

This probleme should be only in webkit browsers, cause in core.css you have added

body {
    -webkit-transform: rotate(0deg);
}

If you remove this, everything should be fine.

Upvotes: 2

Related Questions