settingsAccountsettings
By using our mini forum, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy
Menusettings

Q: How to hide image's title in Divi theme's gallery module?

+4 votes

Hi, how can I hide the title of an image in the Divi WordPress theme's gallery module?

Example:

hide image in divi gallery module

Thanks!

asked in Web Development category by user icabe

1 Answer

+3 votes
 
Best answer

It is pretty easy! :-)

In your Child theme add these lines of code:

/*Hide the title in the gallery*/
.mfp-title {
    display: none;
}
answered by user hues
selected by user golearnweb
...