Hi!
How do I remove the gradient/shadow on the Widely Theme? Also, what is the code to remove the 'grid' image from the content container?
Thanks!
The blog I need help with is flattybouch.wordpress.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Hi!
How do I remove the gradient/shadow on the Widely Theme? Also, what is the code to remove the 'grid' image from the content container?
Thanks!
The blog I need help with is flattybouch.wordpress.com.
Looks like you solved this, am I correct? :-)
Otherwise, can you please give a link to a test page(s) with the problem areas.
That way it is easier for people to help you.
Thanx! :-)
Hi! I am also interested in how you are able to do this? Can you please post what CSS you altered/removed?
Thanks! :)
How do I remove the gradient/shadow on the Widely Theme?
To remove the box shadow from around the main content container on the Widely theme, add this to your Appearance → Custom Design → CSS editor:
.site {
box-shadow: none;
}
Also, what is the code to remove the 'grid' image from the content container?
To remove the grid background image from the main content container on the Widely theme, add this to your Appearance → Custom Design → CSS editor:
.site {
background: #fff;
}
Also note that you can combine the two examples from above into one like this:
.site {
background: #fff;
box-shadow: none;
}
thank you so much, designsimply!
This topic has been closed to new replies.