Removing shadow gradient AND background 'grid' image from Widely
-
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: (visible only to logged in users)
-
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; } -
- The topic ‘Removing shadow gradient AND background 'grid' image from Widely’ is closed to new replies.