1. As far as I can see, the product image is already displayed rather close to the right panel (here is the screenshot:
http://www.diigo.com/item/image/2cdgz/dh23). Would you like to move it yet closer?
2. To make the rounded corners for the sign-in pop-up please add the following rule to your Ecwid CSS theme (Ecwid control panel -> ‘System settings’ tab -> Design -> CSS themes):
Code:
div.ecwid-FormPopup {
border-radius: 13px;
-moz-border-radius: 13px;
-webkit-border-radius: 13px;
}
and click "Save (Ctrl+S)".
It's the
border-radius CSS property that does the magic. border-radius is supported by most of the modern browsers, but not by Internet Explorer family of browsers - they will still display the usual corners.
3. Please refer to the following articles, they contain the info you need:
http://kb.ecwid.com/w/page/21499933/... and
http://kb.ecwid.com/w/page/25907450/...
4. I have inspected the product pages of
kyhorsepark.com (for example, this one -
http://kyhorsepark.com/index.php?opt...
and, as far as I can see, they have rounded corners for the breadcrumbs, the product image, navigation arrows and right panel. They can be set by the following CSS rules:
Code:
div.ecwid-productBrowser-categoryPath, div.ecwid-productBrowser-details-rightPanel, div.ecwid-productBrowser-backgroundedPanel,
div.ecwid-productBrowser-details-thumbnail img {
border-radius: 5px !important;
-moz-border-radius: 5px !important;
}