Jump to content

CSS Pure Popup Help


adam84

Recommended Posts

Hi,

 

I am trying to create a CSS popup. I have provided my code below. I want to have the popUpDiv appear in the top left corner of the screen. But for some reason it appears in the middle of the screen. Any ideas on what my issue is? Thanks

 

HTML

<body>

<div id="blanket" style="display:none;"></div>	

<div id="popUpDiv" style="display:none;">
<div name="updateDIV" id="updateDIV"></div>
</div>

<div name="content" id="content">
	text		
</div>
</body>

 

CSS

#blanket {
background-color:	#111;
opacity: 		0.65;
filter:			alpha(opacity=65);
position:		absolute;
z-index: 		1;
top:			0px;
left:			0px;
width:			100%;
}

#popUpDiv {
position:		absolute; 
left:			900px;
top:			600px;
background-color:	#eeeeee;
width:			900px;
height:			600px;
z-index: 		2;
}

Link to comment
Share on other sites

Ok so implicitly you are saying that you want #popUpDiv to show up. right?

More over you want it to show up in the top left corner if read your first post  right.

 

if that is the case try out to set the following properties:

 

#popUpDiv {
position:		absolute; 
left:			0; /* i changed this */
top:			0; /* idem dito */
background-color:	#eeeeee;
width:			900px;
height:			600px;
z-index: 		2;
}

 

Note though if you would have wrapped this div in another div with a state other than static and that one is positioned someone else on the screen this wont work. So make sure this is above all other mark up like you have it now.

 

instead of an extra div to cover it, up you could have also set something like  margin-left: -999em; and than set it to 0 with javascript

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.