Hi
I have three separate pieces of text on my hompeage. I would like the entirety of each piece of text to be clickable. Is this possible? Currently I am just using hot spots beneath them.
Thanks
Hey,
Out of the box that is not possible.
As a workaround, please edit your Hotspot element and give it a custom CSS class (“custom-hotspot” in example below) in Advanced > Developer Settings, add following code to bottom of Quick CSS field in Enfold theme options > General Styling and adjust it as needed
#top .custom-hotspot .av-image-hotspot a {
color: transparent;
background-color: transparent;
}
#top .custom-hotspot .av-image-hotspot-1 a::after {
color: #000;
content: 'STILLS';
font-size: 40px;
}
#top .custom-hotspot .av-image-hotspot-2 a::after {
color: #000;
content: 'ABOUT';
font-size: 40px;
}
#top .custom-hotspot .av-image-hotspot-pulse {
display: none;
}
Best regards,
Yigit