Disable image hover?

  • Unknown's avatar

    Hello,

    Is there any way to disable the image hover feature? Am using the Mixfolio theme.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Not sure about Mixfolio, but .lay1 > div .imgwrap {
    opacity: 1!important;
    }

    works in Triton Lite. Its worth a shot! :)

  • Unknown's avatar

    Doesn’t work sadly, but thanks heaps – may change to Triton Lite!

  • Unknown's avatar

    The image hover stuff appears to be set in the PHP script files, not in the CSS in Mixfolio, so I don’t know that there is anything that can be done since we cannot edit the theme PHP script files.

  • Unknown's avatar

    When scripts are involved, sometimes saving the CSS is the only thing that will work because the script must use the saved CSS to make some of the calculations (compared to testing it with browser tools or something like Firebug which may not work depending on how the script is setup).

    To remove the overlay from images on the home page of the Mixfolio theme, try adding this to your Appearance → Custom Design → CSS editor:

    .home .hide,
    .home .sticky .hide {
        display: none !important;
    }
  • The topic ‘Disable image hover?’ is closed to new replies.