vote up 2 vote down star
2

Hi there,

I'm looking for a way to display a confirm dialog that's always centered on the page, and floating over the page.

Tried that, but it's not 'always centered' at all, since the position is fixed:

.Popup
{
    text-align:center;
    position: absolute;
    bottom: 10%;
    left: 27%;
    z-index:50;
    width: 400px;
    background-color: #FFF6BD;
    border:2px solid black;
}

Any idea? Thanks

flag

4 Answers

vote up 8 vote down check

Try using this CSS

#centerpoint {
    top: 50%;
    left: 50%;
    position: absolute;
}

#dialog {
    position: relative;

    width: 600px;
    margin-left: -300px;

    height: 400px;
    margin-top: -200px;
}

Against this HTML markup

<div id="centerpoint">
    <div id="dialog"></div>
</div>

#centerpoint should be the container div of the dialog

Note that the #centerpoint DIV should be inside the body element or inside elements that don't have a position: relative; property

link|flag
1  
Wow, that's truly amazing, I'll dig into that, for sure! – Vinzz Jul 30 at 9:35
I tried it, it works in IE, Firefox, Chrome, Safari and Opera. – Christian Toma Jul 30 at 9:36
vote up 0 vote down

Christian's solution works great, unless the page has vertical scrolling, in which case centering is relative to the actual height rather than the visible area. Anyone know how to solve this?

link|flag
vote up 1 vote down

.Popup { width:400px; margin-left:auto; margin-right:auto; }

that's horizontal alignment, vertical alignment is a little trickier. just google around for 'css vertical center' or something

link|flag
That only centers the dialog in it's parent container. But it doesn't float it over the page. – Christian Toma Jul 30 at 9:32
jep, you're right. – Andrew Jul 30 at 9:40
vote up 0 vote down

Realise this doesn't answer the question - but have you looked at Jquery UI's dialogs? Might be useful to you.

http://jqueryui.com/demos/dialog/

link|flag
Thanks, but no thanks, do not wish to link a whole framework for such a detail – Vinzz Jul 30 at 9:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.