Found it the little bugger. :P
Steps in finding it:
- Open page in chrome
- Open developer tools (ctrl-shift-j for the console)
- Open the Scripts tag
- Under Event Listeners Breakpoints expand DOM Mutation
- Check the checkbox next to DOMContentLoaded
- Step through (F10) until you can hover over an element in the Elements tab and a blue box appears over the element on the page.
- navigate the node tree until you narrow in on the deviant element.
- find the style rule in the panel to the right.
After performing these steps I found that the problem is in your template.css.php style sheet file. the style rule is render as this:
#fpssContainer84.fpss-template-movies .slide-loading {
position: absolute;
width: 450px;
height: 272px;
background: black url(../images/loading_black.gif) no-repeat center center;
z-index: 100;
}
You can either change this rule where it is (template.css.php line 13) or create a style rule on the page. If you modify the actual style rule, I recommend the following:
#fpssContainer84.fpss-template-movies .slide-loading {
position: absolute;
width: 100%;
height: 272px;
background: white;
z-index: 100;
}
or if you want to overwrite the style rule in another stylesheet or the actual page:
#fpssContainer84.fpss-template-movies .slide-loading {
width: 100%;
background: white;
}
and lastly, if that doesn't even work, try this in any stylesheet:
#fpssContainer84.fpss-template-movies .slide-loading {
width: 100% !important;
background: white !important;
}