November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Do you mean a static popup (containing html and images) or one of EPiServer's modal dialogues?
Assuming you mean a static popup, the typical approach is to have a div with some content (the popup) that has a higher Z-index (using css) than the underlying page (meaning it will float on top). The popup div will initially be hidden (also using css) and then shown using javascript either on load or for example when a link is clicked.
This is nothing EPiServer-specific, googling "javascript popup" should get you a bunch of example code. If you want your popup to contain contents from an EPiServer page you would populate the div in codebehind.
Thank you Arild. That was what I was looking for. I will have a look at what Google says, and try :)
My customer wants a page to be displayed "on top of" another page (like a pop up or a modal dialog), when the user clicks a link. What is the best way to implement this in Episerver CMS6?