Reputation: 67295
I'm using JS Bin to develop some advanced JavaScript. My current project can be seen at http://jsbin.com/uciviy/20.
However, at the moment this page shows a vertical gray line. (It is visible just to the right of the Sales Costing header, and it continues to the bottom of the page.)
I don't seem able to identify what is causing this. Either way, I don't want it. Can anyone see where it's coming from?
Upvotes: 2
Views: 117
Reputation: 3252
Remove this code at master.css on line 1
background-image: url(../images/leftmenu_background.gif);
Upvotes: 1
Reputation: 1662
Your HTML body appears to have a CSS style that is adding a background image in master.css with a source of '../images/leftmenu_background.gif' which I believe is creating your vertical line.
Here's the offending image: https://ovation.viperdmc.com/images/leftmenu_background.gif
Upvotes: 5