Question
-
How do I get rid of this annoying line between my blog post and the sidebar? Here is the screenshot of it.
My blog is http://fedenerazzurra.com/ . Thanks in advance.
The blog I need help with is: (visible only to logged in users)
-
I don’t see anything in the CSS that should cause this.
I’ll tag this to have it moved to the CSS forum and hopefully one of the staff will drop by and figure it out.
-
-
If you can edit your theme’s CSS go into style.css and look for
#posts{background:url( 'images/single_bg.png' ) no-repeat;color:#7f7f7f;float:left;margin-bottom:40px;margin-top:30px;width:650px;}and remove background: url( ‘images/single_bg.png’) no-repeat; to remove the border. In the end the above code should look like
#posts{color:#7f7f7f;float:left;margin-bottom:40px;margin-top:30px;width:650px;} -
-
You shouldn’t have anything like “url(‘images/single_bg.png’)” in your Appearance → Custom Design → CSS page as a matter of fact because the CSS editor in the WordPress.com Custom Design upgrade doesn’t understand relative paths like the one used inside url() in this example. Basically, your site is seeing ‘images/single_bg.png’ or ‘http://s3.wp.com/images/single_bg.png’ (which it looks like you may have updated to) as a broken image link and so it displays nothing. It would be better to get rid of that rule and just turn off the background like this instead:
#posts { background: none; }P.S. Nice looking site! Love what you’ve done with Triton Lite.
- The topic ‘Question’ is closed to new replies.
