How can i make small popup at left bottom??

banzer

Newbie
Joined
Apr 29, 2016
Messages
30
Reaction score
8
please check this videos
i want to make like this popup on my wordpress website site
please help me,,
 
if that's a wordpress site, look at what plugins they use - read the source code or use ScanWP.net or something.
 
if that's a wordpress site, look at what plugins they use - read the source code or use ScanWP.net or something.

I've been there before, some bloggers do use the hid worpress plugin or whatever, to hide their plugins and themes.
But it's still a great recommendation.
 
The basic CSS trick is:
Code:
.whateveryourelementis{
  position:fixed;
 bottom:0;
 left:0;
 width:somefixedwidthpx;
 height:somefixedheightpx!
display:block;
z-index:9999;
}

If you don't know how to implement this into your site, hire someone who does ;)

Not to mention, you don't need a big ass plugin for this.

Edit: you also need js to show and hide this popup depending on your requirements..
 
Last edited:
Wonderful suggestion, but didn't see wordpress plugin related to it.
However, this website you shared, has a download link to download the plugin, but I can't tell how trustworthy it is.

Just edit the html template. There's no need for a full plugin for this IMO.
 
Here I will suggest simple popup HTML Code with this you can make small popup at left bottom

<div class="popup" onclick="myFunction()">Click me!

<span class="popuptext" id="myPopup">Popup text...</span>

</div>
 
Look up FindDIY / js-footerbanner on GIrhub. This is a javascript sticky banner script that will not get blocked by ad blockers. The script will display an image or ad banner (default 320x50) at the bottom of the page. This is not a separate popup window.
 
Depends what you need it for. If its linked to you store to notify when a user has purchased and order its alittle more complicated.

Just type worpress notification plugin on google.

They will show up.
 
Back
Top