How to remove grey 'shadow' from the top of the blog
-
I would like to know what is the CSS code to remove a grey ‘shadow’ form the top of the Chunk theme?
thanks
AlvaroThe blog I need help with is: (visible only to logged in users)
-
This should do the trick to remove the gray shading from the top of the Chunk theme:
body { background-image: none; } -
-
Are you talking about the shading at the very top of the site?
Here’s how that is set by the original CSS in the Chunk theme:
body { background-image: -moz-linear-gradient( rgba(0,0,0,0.22), rgba(255,255,255,0) 80px ); background-image: -webkit-linear-gradient( rgba(0,0,0,0.22), rgba(255,255,255,0) 80px ); }It uses the background-image rule and a gradient. Setting background-image to none worked in my test. I tested in Chrome 16 and Firefox 8.0.1.
-
-
- The topic ‘How to remove grey 'shadow' from the top of the blog’ is closed to new replies.