
02-03-2014, 10:47 AM
|
 |
Ecwid Team
|
|
Join Date: Jan 2011
Posts: 2,675
|
|
Quote:
Originally Posted by YarnShop4U
Firefox 26.0
IE 11.0
Script hosted on Blogger
The only buttons I can get to work are Buy Now and then the checkout ones. The payment options are working, continue shopping, list view, clear bag, quantity.... pretty much every button is not working.
I had high hopes too for ecwid, but I'm losing faith quickly and after spending the last 14 hours working on it, I'm exhausted. I have no idea how to fix it.
Any help is MUCH appreciated.
www.yarnshop4u.blogspot.com
|
Hi,
I've inspected your Ecwid store and found out that this issue is caused by CSS of your site.
The Ecwid content is fully overlapped with this element: <div class="fauxborder-left">. It makes the elements inside Ecwid not functional.
You can quickly fix it yourself by changing CSS of your store. You should add the following CSS code at your Ecwid control panel>System Settings>Design (click 'New CSS theme', add the code, enable it and save):
Code:
div.ecwid-productBrowser {
position: relative;
z-index: 1000;
}
|