0

I am trying to remove the title from an image browser gallery using the Nextgen gallery plugin (v. 2.1.46) and Wordpress (4.4.4).

I have been instructed to go to Gallery > Other Options > Styles and modify the CSS code. But, I am not having luck with the code to remove these titles. So far I have tried:

title=""

title="display:none;"

Could someone please help me and let me know if I am putting in the correct code? Thank you!

Caitlin
  • 1
  • 1
  • 2

1 Answers1

2

Add this custom css:

.ngg-imagebrowser > h3 {
  display: none !important;
}
llioor
  • 5,804
  • 4
  • 36
  • 44