Please post your website URL exactly where it appears and I will have a look.
Thread Starter
pnb1
(@pnb1)
Thanks for reply,
Here, for example: http://tavernofdreams.com/best-lucid-dreaming-apps/
You can see an ugly white box around every thumbnail which appears after adding caption
Add this CSS to Appearance >> Theme Options >> Other >> Custom CSS
.thumbnail {
padding: 0;
background: none;
border: 0;
}
.wp-caption .wp-caption-text {
margin-top: 0;
}
It will get rid of padding, margins. border and white background.
Let me know if this is what you were looking for.
Thread Starter
pnb1
(@pnb1)
Unfortunately, that didn’t worked. I was trying to modify these same CSS classes also.
Code is correct but there is another mistake in your CSS before that, so it breaks everything that comes after.
You have a missing curly bracket "}" (without quotes) at the end of this selector:
.navbar.navbar-default
Right after that gradient code that you are using for this selector. Once you will add this curly bracket everything will work just fine.
Thread Starter
pnb1
(@pnb1)
Awesome, that really works now! Thank you