can you make an image create a simple popup beside or below the image
I ran across a site that has done something I would like to do.
The site is here:
The particular thing I'm wondering if can be done with the BeTheme is towards the bottom of the page, above the purple and grey boxes, there are 6 images. When you click on any of them, a little box opens that has a brief bit of info. Is that possible with this theme with any of the muffin builder options?
Thanks for any help you can provide.
Comments
we do not have an item like this but you can use HTML to do it. For example:
[button title="Button" link="#you-custom-id" target="_blank" class="" download="" rel="lightbox" onclick=""]
<div id="you-custom-id" style="display:none">CONTENT HERE</div>
So what you need is a link with rel="lightbox"
thanks
If you want to link to a PDF file in the second button simply link to the PDF URL and do not use the popup DIV.
<a href="#your-custom-id" rel="lightbox><img src="URL" /></a>
You do not need to use the button shortcode.
thanks
thanks