Hello guys,
I have 2 issues with this theme, but couldn't solve my problem.
1) I'am trying to disable the page header on the product page of a hikashop site, but don't know how to. I disabled all the title options on the back-end but even tried the override ".item-page header h1 { display: none; }" but the header/title is still displayed
http://i62.tinypic.com/2elcrih.jpg
2) My next problem is more discussed. I found a override code to disable the zoom on the product page, but i want to disable it also on the product page, but non of the options worked for me. Even deleting the gkzoom code or adding this to the override:
nspImageWrapper:hover img {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
#gkZoom {display:none;}
#gkZoom.active{display:none;}
.nspArt .nspImageWrapper:hover img {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
}