Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1398100

    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

    #1398348

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.