Hello!
I really like the idea of placing the minicart to right panel! The only think that I would do is removing the second Minicart (at the moment you have two of them on the page -
http://www.diigo.com/item/image/2cdgz/a9vt)
If you open the source of the
http://www.hikifuda.com/store.html for editing, you will find two identical fragments of code there:
Code:
<div> <script type="text/javascript" src="http://app.ecwid.com/script.js?STORE_ID"></script> <script type="text/javascript"> xMinicart("style="); </script> </div>
</div>
Please remove the first one (this is the bag displayed at the bottom of the page), and modify a bit the second one by adding 1563010 instead of STORE_ID. As a result the second fragment should look as follows:
Code:
<!-- sidebar -->
<div class="module-custom_html module">
<div class="module-content">
<div> <script type="text/javascript" src="http://app.ecwid.com/script.js?1563010"></script> <script type="text/javascript"> xMinicart("style="); </script> </div>
</div>
</div>
That's not crucial, but recommended.
1. Sure, the breadcrumbs can be removed. How to do it:
http://kb.ecwid.com/w/page/15853288/...%20breadcrumbs
The categories icons will be shifted up a bit after that.
2. That is also easy, just add the following CSS rule to Ecwid control panel -> System Settings -> Design -> CSS Themes:
Code:
div.ecwid-ProductBrowser-auth-anonim,
div.ecwid-ProductBrowser-auth-logged {
top: 2px;
margin-right: 7px;
}
and click "Save (Ctrl+S)". Please note that you do not necessarily need to use the value of 7px for margin-right - probably you like zero value instead, it will move the "Sign In" link yet closer to the right.