SHOWING THE TITLE ON HOVER

HOW TO SHOW THE TITLE WHEN WE HOVER THE POST IN BLOG HOME PAGE ???

Hi Subham,

Thank you for your question.

Do you want to hide the title initially and only display it when you hover over the post?

Please advise.

Kind Regards,
Movin

YES…

Hi Subham,

You can try achieving this by using any of the following CSS code that best suits you using the following plugin.

body.home h2 a.front-link {
    display: none;
}
body.home .masonry-brick:hover h2 a.front-link {
    display: block;
}
body.home h2 a.front-link {
   visibility: hidden;
}
body.home div.type-post:hover h2 a.front-link {
    visibility: visible;
}

Best Regards,
Movin

no changes in index.php ??

No we don’t need to change anything in index.php file just do as described above.