Viewing 4 replies - 16 through 19 (of 19 total)
  • Thread Starter dem10

    (@dem10)

    I can change the color with no problem, for example white. At home worked good but at the individual post is gray… why?

    https://www.infoliga.schleider.com.ar/36996/gutierrez-sigue-en-penarol/

    Hi @dem10,

    I can see the text of the caption on that page is actually white but appears grey due to the title’s grey background overlaying it.

    You could workaround this by pushing the title further up the header area so its background doesn’t overlay the caption:

    .has-thumbnail .entry-header .entry-title {
    bottom: 39px;
    }

    You’ll also want to tweak the background colour of .ccfic from background: rgba(0,0,0,0.30); to background: rgba(0, 0, 0, 0.5); so that it exactly matches the title’s:

    .ccfic {
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 10px;
    }
    Thread Starter dem10

    (@dem10)

    worked! Thank you very much

    You’re most welcome!

Viewing 4 replies - 16 through 19 (of 19 total)
  • The topic ‘I want to show caption in image’ is closed to new replies.