Before you ask please READ THIS

Posts List and Indivudual posts

in FatMoon Posts: 60
Now I have the effect, that the Title Image gets overlayed with dark tint On Hover. The same happens in the images in the Post itself.

How to turn it off? And possibly change an effect?

Comments

  • AirAir
    Posts: 10,970
    Hello :-)

    Could you show me link to that, so I could understand what you mean exactly?

    With kind regards.
  • Posts: 60
    That same https://olafsosh.com/blog/

    When you hover over, they darken and get that Plus symbol. I would love to have them that "Drop" effect as in albums, if possible, but that's secondary.
  • AirAir
    Posts: 10,970
    Hey again:-)

    Hover effects definitely should be added to blog also :-) But they are not yet there.

    If you want to remove this, use this custom CSS:
    .item-image:hover a::before,
    .item-image:hover a::after{
        opacity: 0;
    }
    For drop effect try this custom CSS:
    
    .item-image a {
        overflow: hidden;
    }
    .item-image a > img{
    	-webkit-transform: scale(1.05);
    		-ms-transform: scale(1.05);
    			transform: scale(1.05);
    	-webkit-transition: -webkit-transform .5s;
    			transition: 		transform .5s;
    }
    .item-image:hover a > img{
    	-webkit-transform: scale(1);
    		-ms-transform: scale(1);
    			transform: scale(1);
    }
    Hope it helps!

    With kind regards.
  • Posts: 60
    Works like a charm, sir!
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion