Hello Jaosh,
Thanks for your message! I'll answer your questions one at a time.
1. If you want to add alternative viewer for product images, you should use a custom script or some 3rd-party solution like
Magic Zoom. Magic zoom doesn't have the exact functionality that you want, but it gives you an idea of what it looks like.
2. The easiest way to put your own info to this section is alternate the default "Sorry, we do not ship to this location" message using so-called
custom translations code. Basically, you should add a special code to a page where your Ecwid store is installed, which will change the default message message text to a text you want. In your case, the code will look like:
Code:
<script>
ecwidMessages = {
"ShippingOptions.location":"To get shipping rates for your location, please contact us using the \"Contact Us\" button in the main menu."
}
</script>
The custom translations code doesn't allow using links, unfortunately, but you can put there any text you want and provide customers with detailed instructions. More info on custom translations
can be found in our article.
3. Those small buttons are just simple HTML-elements, so you can change them with CSS as you did with some of other elements. Here's the code that you can alter in order to get the look you want:
Code:
/* Ecwid buttons */
button.gwt-Button, #wrapper button.gwt-Button {
background: transparent url(icons/back_normal.gif) repeat-x;
border: solid 1px #d3d4d6;
outline: none;
vertical-align: baseline;
text-decoration: none;
cursor: pointer;
color: #1e7ec8;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
height: 24px;
font: normal 12px arial, helvetica, verdana, sans-serif;
white-space: nowrap;
padding: 0 5px;
}
button.gwt-Button:active, #wrapper button.gwt-Button:active {
background: transparent url(icons/back_on.gif) repeat-x;
border: solid 1px #a0a4aa;
font: normal 12px arial, helvetica, verdana, sans-serif;
color: #ffffff;
outline: none;
More info on changing buttons with CSS
can be found in our article.
4. At the moment, the main product image can be up to 1000x1000 pixels.
Hope this helps!
If you have any further questions, feel free to ask them.