Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

Lay Theme Forum

  1. Home
  2. General Discussion
  3. Easy way to put captions in images

Easy way to put captions in images

Scheduled Pinned Locked Moved General Discussion
6 Posts 2 Posters 596 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H Offline
    H Offline
    hx
    wrote on Nov 13, 2020, 11:56 AM last edited by
    #1

    Hello everyone,

    I wonder if there's an easy way to put caption inside the actual image, make it appear as an overlay?

    I've arrived at this:

    .caption{
        transform: translateY(-100%);
        padding: 20px;
    	background: rgba(255, 255, 255, .8);
    	opacity: 0;
    	transition: all 1s ease;
    }
    
    .caption:hover {
    	opacity: 1;
    	transition: all 1s ease;
    }
    

    But it creates an unwanted (white) void at the bottom of the image (where the cation used to be) and also, the caption overlay does not fill the whole image.
    See here. (the website I am working on)

    Any clue how I could further work on this?
    Thanks!

    1 Reply Last reply
    0
    • R Offline
      R Offline
      Richard
      Global Moderator
      wrote on Nov 13, 2020, 9:38 PM last edited by
      #2

      Dear @hx

      Wish to help, however the Link provided does not take me to the website to inspect it sorry :)

      Best
      Richard

      H 1 Reply Last reply Nov 16, 2020, 3:07 PM
      0
      • H Offline
        H Offline
        hx
        wrote on Nov 14, 2020, 8:06 AM last edited by
        #3

        Hello Richard,

        sorry, weird mistake. It just copied the anchor. This is the website:
        https://stilpunkt.mcelangelo.com/

        I managed to get the caption into the image and style it via this code:

        .img {
        	display:flex;
        	z-index:0;
        }
        
        .caption {
        	padding: 40px;
        	background: rgba(255, 255, 255, .8);
        	opacity: 0;
        	transition: all 1s ease;
        	z-index: 10;
        	overflow: hidden;
        	flex-grow:1;
        }
        
        .caption:hover {
        	opacity: 1;
        	transition: all 1s ease;
        }
        

        However, as soon as the text of the caption reaches the bounds of the image, it overflows, disregarding the overflow:hidden command. Did I forget something? I tried a several other commands (as described here: https://medium.com/@gaurav5430/css-flex-positioning-gotchas-child-expands-to-more-than-the-width-allowed-by-the-parent-799c37428dd6 ), but to no avail.

        Maybe you have an idea. Thank you very much!

        1 Reply Last reply
        0
        • R Richard
          Nov 13, 2020, 9:38 PM

          Dear @hx

          Wish to help, however the Link provided does not take me to the website to inspect it sorry :)

          Best
          Richard

          H Offline
          H Offline
          hx
          wrote on Nov 16, 2020, 3:07 PM last edited by
          #4

          @Richard-Keith Hey Richard, I wonder if you have seen this... but can you point me into the right direction regarding the alignment of the Caption text within the container?

          I'm trying to make it vertically centered as opposed to the top, which is now the case, but I still want the container to fit height and width to the parent (except the 20 px margin).

          Thank you!

          1 Reply Last reply
          0
          • R Offline
            R Offline
            Richard
            Global Moderator
            wrote on Nov 23, 2020, 12:33 AM last edited by
            #5

            Dear @hx

            I apologise that i cant figure it out directly at the moment even though i would like to help :)

            I have found some content online that will definitely get you to your wanted destination! I hope this helps and i haven't let you down!

            https://www.w3schools.com/css/css_align.asp

            https://vanseodesign.com/css/vertical-centering/

            https://css-tricks.com/centering-css-complete-guide/

            https://philipwalton.github.io/solved-by-flexbox/demos/vertical-centering/

            https://www.w3docs.com/snippets/css/how-to-vertically-center-text-with-css.html

            https://blog.logrocket.com/13-ways-to-vertical-center/

            Once again good luck! Let me know how you go :)

            Sincerely
            Richard

            H 1 Reply Last reply Nov 23, 2020, 1:20 AM
            0
            • R Richard
              Nov 23, 2020, 12:33 AM

              Dear @hx

              I apologise that i cant figure it out directly at the moment even though i would like to help :)

              I have found some content online that will definitely get you to your wanted destination! I hope this helps and i haven't let you down!

              https://www.w3schools.com/css/css_align.asp

              https://vanseodesign.com/css/vertical-centering/

              https://css-tricks.com/centering-css-complete-guide/

              https://philipwalton.github.io/solved-by-flexbox/demos/vertical-centering/

              https://www.w3docs.com/snippets/css/how-to-vertically-center-text-with-css.html

              https://blog.logrocket.com/13-ways-to-vertical-center/

              Once again good luck! Let me know how you go :)

              Sincerely
              Richard

              H Offline
              H Offline
              hx
              wrote on Nov 23, 2020, 1:20 AM last edited by
              #6

              Thank you @Richard-Keith, I'll give these a read - even though I already delved into some of them!

              xx

              1 Reply Last reply
              0
              • V vavavavava referenced this topic on Feb 22, 2025, 10:23 AM
              Reply
              • Reply as topic
              Log in to reply
              • Oldest to Newest
              • Newest to Oldest
              • Most Votes

              4/6

              Nov 16, 2020, 3:07 PM


              I also code custom websites or custom Lay features.
              💿 Email me here: 💿
              info@laytheme.com

              Before you post:
              1. When using a WordPress Cache plugin, disable it or clear your cache.
              2. Update Lay Theme and all Lay Theme Addons
              3. Disable all Plugins
              4. Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"

              This often solves issues you might run into

              When you post:
              1. Post a link to where the problem is
              2. Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
              3. If the problem is difficult to explain, post screenshots / link to a video to explain it
              Online Users
              Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com
              laytheme.com
              • Login

              • Don't have an account? Register

              • Login or register to search.
              4 out of 6
              • First post
                4/6
                Last post
              0
              • Recent
              • Tags
              • Popular
              • Users
              • Search