Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1193811
    peopleholding
    Participant

    How can I remove the behavior when hovering over the featured image for a post? Currently the image fades and a permalink icon appears, I’d like the image to remain 100% and no icon to appear. This effect is especially distracting on the mobile version because scrolling past a post creates this distracting effect that isn’t useful for the reader. Thanks!

    #1193853
    Joao
    Moderator

    Hi There,

    Please add the following code to Appereance > Customizer > Custom > CSS

    body .entry-thumb:before {
      display: none;
    }
    
    body a.entry-thumb:hover img {
      opacity: 0.75;
      filter: alpha(opacity=75);
      zoom: 1;
    }

    Hope it helps

    Joao

    #1198454
    peopleholding
    Participant

    unfortunately that didn’t remove the hover effect and icon

    #1198496
    Thai
    Moderator

    Hi There,

    Please try with this:

    .entry-thumb:before {
        display: none;
    }
    a.entry-thumb:hover img {
        opacity: 1;
    }

    Hope it helps 🙂

    #1199543
    peopleholding
    Participant

    Hello –

    It looks the same when I use this new version of code.

    #1199850
    Rad
    Moderator

    Hi there,

    Would you mind providing your site’s URL that has this issue?

    Thanks!

    #1200475
    peopleholding
    Participant
    #1200513
    Thai
    Moderator

    Hi There,

    Please find this CSS:

    p.p-meta span:nth-child(1) {
      display: none !important;
     
      p.p-meta span:nth-child(3) {
      display: none !important;
    }
    .single-x-portfolio .entry-featured {
    display: none !important;
    }
    .single-post .entry-featured{
    display:none;
    }
      
    .entry-thumb:before {
        display: none;
    }
    a.entry-thumb:hover img {
        opacity: 1;
    }

    And change to this:

    p.p-meta span:nth-child(1) {
        display: none !important;
    }
    p.p-meta span:nth-child(3) {
        display: none !important;
    }
    .single-x-portfolio .entry-featured {
        display: none !important;
    }
    .single-post .entry-featured{
        display:none;
    }
    .entry-thumb:before {
        display: none;
    }
    a.entry-thumb:hover img {
        opacity: 1;
    }

    Hope it helps 🙂

    #1202087
    peopleholding
    Participant

    Yes! This worked. Thanks!!!

    #1202125
    Rahul
    Moderator

    Glad it worked for you.

    If you still have any issues with the theme, let us know. We’d be happy to assist you with anything.

    Thank you.

  • <script> jQuery(function($){ $("#no-reply-1193811 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>