• My theme is codium now, and if you look at my site you’ll see what i’m talking about

    https://www.firstworldish.com

    there is a bullseye thing that happens when you move your mouse over the photos. I would like to get rid of that. I tried contacting the publisher of the theme but no luck. Would appreciate any help

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter esspoker

    (@esspoker)

    bump… anyone?

    Do you want to get rid of just the icon or the entire overlay that happens when you hover over the images on the page?

    If you want to remove the entire overlay, you can go to line 1055ish of your style.css:

    and change this line:

    .overlay {
      display: block;
      position: absolute;
      z-index: 20;
      background: rgba(0, 0, 0, 0.6);
      overflow: hidden;
      transition: all 0.5s;
    }

    to this:

    .overlay {
      display: none;
      position: absolute;
      z-index: 20;
      background: rgba(0, 0, 0, 0.6);
      overflow: hidden;
      transition: all 0.5s;
    }
    Thread Starter esspoker

    (@esspoker)

    that’s what I want, I’ll try it thanks a lot

    Thread Starter esspoker

    (@esspoker)

    fixed, great.

    I forgot to mention that I want to make that picture clickable…

    Thread Starter esspoker

    (@esspoker)

    I’m guessing in that same paragraph of code I can add something to make the image clickable. Would that work?

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Adjust my theme so featured images are flat’ is closed to new replies.