Hi,
Thanks for a great theme.
Is it possible to remove the fine grey line around posts and widgets such as text widgets as in here http://cubacustomtours.com/blog/ ?
I did look through this forum and tried a few suggested solutions, like no borders for content, posts etc., but none worked for me.
What am I missing?
Thanks
Sotirios
Hi @aptoitios,
Please use this css code:
article {
box-shadow: none;
}
If you want also to remove the background bar grey color (and achieve what I attached you) you could use this css code:
.entry-meta-bar {
border:none;
}
Quick response as always :). .thx
The 1st piece of code worked for the posts and I had already found code here for the widgets.
As for the 2nd piece of CSS, it did not make it look like your attachment. The horizontal bar that has the “read more” in it is still there.
Hi,
You need also to change the background color:
.entry-meta-bar {
background:#fff;
border:none;
}
Thanks,
Cristian