Hi Adam,
How do I remove the effect?
The theme has been designed with this effect and you can’t remove that without coding this accordingly. If you’re familiar with coding, you can always use your browsers inspection tool to inspect the elements and then code your own customizations, for example:
.mh-loop-thumb:before, .mh-loop-thumb:after { display: none; }
Also I have Disqus for comments but it does not reflect the comment counter on the theme? This still shows the default WordPress comments? How do I fix this?
Please be aware that Disqus comments don’t have anything to do with WordPress comments. WordPress comments are stored in the database on your server and Disqus comments are stored on the Disqus servers. That also means the comment count in the theme doesn’t have anything to do with Disqus, as this is about WordPress comments.
However, you could simply hide the WordPress comment count with a line of CSS:
.mh-meta-comments, .entry-meta-comments { display: none; }
How do I make it looks like this at 100%?
As already explained in your other thread, the theme has a max-width of 1350px and the width will automatically adapt based on the screen resolution (e.g. on mobile devices). If you want to reduce the width, you could do this with a line of CSS as well, for example:
.mh-container { width: 80%; }
Thank you.
How can I remove the zoom effect when hovering over images with CSS?
Also how can I change all the theme fonts with CSS or another way?
PS. The CSS codes you gave helped a lot:)
Please keep in mind that you’re using a WordPress theme that is completely free of charge and we’re here on a voluntary basis to help with the configuration of the theme or answer questions regarding theme functionality. We’re not here to do free customizations for you.
As mentioned before, you can always use your browsers inspection tool to inspect the elements on your site and then code your own customizations, for example:
.mh-loop-item:hover .mh-loop-thumb img { transform: none; }
If you’re not familiar with coding, but want to customize code on your website, you could check some of the many available online tutorials to learn or pay someone to do it for you.