[wd_asp elements=’search’ ratio=’100%’ id=1]

Absolute Center of screen/page

13th October 2013

CSS

Css - Codehaven

Just change the values of the margins depending on how big the item is, i.e a modal window.
Then it will always stay 50% on the middle, minus your settings.
.centered {
position: fixed;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -100px;
}