Thank you.
The problem with that oversized spacer in your page is caused by the rule in your site CSS theme (not in your Ecwid theme). It goes like this:
Code:
.entry-content img {
height: auto;
/* some other code omitted*/
}
That height definition forces the 1x1 px spacer.gif to be resized proportionally, hence getting the 400 px high gap.
This setting is defined in your
http://static.ning.com/socialnetwork...
In the coming version 11 of Ecwid this problem will be globally fixed.
Meanwhile you can apply the following worlkaround: add the following CSS rule to your Ecwid CSS theme (Ecwid control panel -> ‘System settings’ tab -> Design -> CSS themes):
Code:
table. ecwid-productBrowser-innerTable img.ecwid-SpacerImage {
height: 1px !important;
}
and click "Save (Ctrl+S)".