[Support request] text and links over images

Home Forums Support [Support request] text and links over images

Home Forums Support text and links over images

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

    How do I place text/link over images?

    As in a subscribe button over an image on a front page?

    Thanks!
    Brad

    #251640
    Tom
    Lead Developer
    Lead Developer

    Somewhat difficult as you need to make the text/link position: absolute.

    <div class="image-container">
        <img src="URL TO YOUR IMAGE" alt="" />
        <span class="image-overlay-content">
            text/link in here
        </span
    </div>

    Then your CSS:

    .image-container {
        position: relative;
    }
    
    .image-overlay-content {
        position: absolute;
        bottom: 10px;
    }

    Hope this helps get you started 🙂

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