I'm trying to get rid of the white, lined paper looking background on GREYZED. I have no idea where to dig in the code to just delete the background. Can anyone help?
The blog I need help with is lockerroomlogic.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
I'm trying to get rid of the white, lined paper looking background on GREYZED. I have no idea where to dig in the code to just delete the background. Can anyone help?
The blog I need help with is lockerroomlogic.com.
That comes from this image:
http://s0.wp.com/wp-content/themes/pub/greyzed/images/content-bg.jpg
Which is set in the theme by this CSS rule:
#content {
background: url('http://s0.wp.com/wp-content/themes/pub/greyzed/images/content-bg.jpg') top center no-repeat;
}
As you can see, it contains not only the lines, but some of the grungy background artwork elements as well. In order to just get rid of the lines, you would need to download the image, adjust the image to remove the lines, upload the adjusted image to your media library, copy the image URL, and add the example CSS from above to your Appearance → Custom Design → CSS editor after replacing the url() value with your own image.
This topic has been closed to new replies.