Box with the size of the pics in the gallery: ho to remove?
-
I’m using a pique theme as a portfolio to show my pics. Under every pic there’s a box with picture’s size and I want to remove the entire box. In the past I already have the setting to remove the meta info, but the box is still here. Can you help me? :-)
The blog I need help with is: (visible only to logged in users)
-
Hi there,
I can see that you checked the option to hide Exif data (via Settings > Media in /wp-admin) from your gallery’s photos but some other meta information is still displaying.
To hide that other information, add the following snippet via the CSS panel of the WordPress.com Customizer:
.jp-carousel-image-meta { display: none; }Let me know how that goes or if any extra questions come up!
-
-
Ah, I can some inline styling on that box that’s overriding the custom CSS.
We’ll need to use the !important command to let the browser know that the custom CSS is more important than the inline styling:
.jp-carousel-image-meta { display: none !important; }The use of the !important command isn’t consider good practice in CSS but is necessary sometimes.
Let me know how that goes!
-
-
- The topic ‘Box with the size of the pics in the gallery: ho to remove?’ is closed to new replies.