CSS - Removing Container Vertical Borders

I am trying to figure out where these 1px borders are called in CSS for:

http://ecbiz103.inmotionhosting.com/~jrbald5/

Below the message thumbnails on this page are two vertical border lines. When I debug the Chrome developer tools and remove the "clear: both" style in div_1_1_1_1_1_1, they go away, but I can't find it anywhere in the actual CSS for editing ...

+3
source share
1 answer

They come from your declaration background-image: url("images/main-bg.gif");in the definition of the .li_container class on line 206.

+3
source

All Articles