Like in the - how made the button - or other elelemnts on Photo - "when you Hover" - open modal popup :) like in video :)
Like in the - how made the button - or other elelemnts on Photo - "when you Hover" - open modal popup :) like in video :)Like in the - how made the button - or other elelemnts on Photo - "when you Hover" - open modal popup :) like in video :)
Like in the - how made the button - or other elelemnts on Photo - "when you Hover" - open modal popup :) like in video :)Hello Sławomir,
Thanks for choosing Nicepage!
Unfortunately, there is no such possibility in Nicepage, you can only assign the common popup to any button.
We added your idea to our wishlist, thanks for helping develop Nicepage!
For now, we could only suggest using any trusted third-party plugins with such functionality,
...................................................
Sincerely,
Negat Veri
Nicepage Support Team
Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp
Unfortunately, this is not feasible with Nicepage. But there are a few ways you can still do it. Unfortunately CSS or JS knowledge is required for this.
The :after pseudoclass in CSS
You can use it to select the button and choose hover to display a text. You can then style this text.
Example:
a:hover:after {
display:block;
position:absolute;
z-index:999;
content: "Lorem ipsum";
padding: 10px;
background: white;
}
Alternatively, you can use Javascript to open the Nicepage popup.
Unfortunately, this is not feasible with Nicepage. But there are a few ways you can still do it. Unfortunately CSS or JS knowledge is required for this. The :after pseudoclass in CSS You can use it to select the button and choose hover to display a text. You can then style this text. Example: a:hover:after { display:block; position:absolute; z-index:999; content: "Lorem ipsum"; padding: 10px; background: white; } Alternatively, you can use Javascript to open the Nicepage popup.Last edited 19 October 2023 by xvemanuelvx
Hello, I tried the example but unfortunately it didn't work. I created the css clsse button and then copied your code into it. It looks like this:
.Button {
a:hover:after {
display:block;
position:absolute;
z-index:999;
content: "Lorem ipsum";
padding: 10px;
background: white;
}
Unfortunately it doesn't work that way. What am I doing wrong?