• Resolved coltenv

    (@coltenv)


    Is there a way I can make the entire background image a link? I know I can add a link and that little link icon will show up, but I’d rather just have the entire image be a link and not have the icon at all. Is there any way I could do that?

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author simonpedge

    (@simonpedge)

    You should be able to achieve this using a link overlay container which has absolute positioning. So you set a background image for your slide, and add the following HTML content to your slide:

    <a class="sa_link_overlay" href="LINK">
    <!-- ANY SLIDE CONTENT YOU WANT HERE EG TEXT -->
    </a>

    And you need the following CSS:

    .sa_link_overlay {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    }
    • This reply was modified 7 years, 4 months ago by simonpedge.
    Plugin Author simonpedge

    (@simonpedge)

    No response for this, so I’m assuming the HTML/CSS I provided resolved your problem.

    Am marking as resolved.

    Thread Starter coltenv

    (@coltenv)

    Hey sorry, I’m not sure how I missed this reply. I just tried it and yes, that worked. Thank you!

    awesome, thanks for sharing

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Make entire background image a link’ is closed to new replies.