I'm trying to change the default missing image icon by modifying the following default CSS lines. I created a new custom CSS theme, dumped the two declarations into, changed the path of the URL, activated it, and saved it.
Code:
/* Placeholders for missing product or category images */ div.ecwid-noimage { background: transparent url(icons/noimage.gif) no-repeat scroll 0 0; height: 100px; width: 100px; margin: 0 auto; } div.ecwid-noimage-small { background: transparent url(icons/noimage-small.gif) no-repeat; height: 80px; width: 80px; margin: 0 auto; }
Code:
/* Placeholders for missing product or category images */ div.ecwid-noimage { background: transparent url(my/custom/image.gif) no-repeat scroll 0 0; height: 100px; width: 100px; margin: 0 auto; } div.ecwid-noimage-small { background: transparent url(my/custom/image-small.gif) no-repeat; height: 80px; width: 80px; margin: 0 auto; }
Can someone assist?