Hello,
My theme is at http://www.lieurance.info
You will notice that on the first page, there is a thin white border around the content area. How can I get rid of this? The border changes depending on the size of the browser window. This page is made using the showcase template, and I made it fixed-width.
I use firebug and have scoured the CSS to find a way to remove it. The best thing I came up with is below, but it is not a perfect fix: It made the white line disappear about half the time but would reappear with browser-resizing:
(I have a child theme. by the way)
.page-template-showcase-php #content, .left-sidebar.page-template-showcase-php #content {
margin: 0 75.5px;
width: auto;
}
Thank you!