Some Questions

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Fri Jun 28, 2013 2:34 pm
Reply with quote
Report this post
So i`ve made some progress and moved the site to a different domain..

But i`m not there yet!

First of all: How can i change the text: Add to Cart on the overview to a different language? I`ve tried using language override but it doesnt seem to find the text.

Second of all: Is there any way to reshape the circle where the price is in? I havent been able to find the image yet for the mouseover circle.

Please let me know!

Thanks in advance :)

btw: Site is at: http://www.inamotion.nl
User avatar
Senior Boarder

GK User
Fri Jun 28, 2013 2:57 pm
Reply with quote
Report this post
The overview is made with News Show Pro GK5, so You should search for:
MOD_NEWS_PRO_GK5_COM_VIRTUEMART_CART_ADD_TO
in file /language/en-GB/en-GB.mod_news_pro_gk5.ini
(or your language file)
There are also other virtue mart phrases.


The circle is not done by image, but with css3:
Code: Select all
.gkNspPM-ProductGallery .gkImage .gkImgOverlay {
background: #00793B;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}

You can use override.css to change it to rectangle etc (set border radius to 0).
User avatar
Moderator

GK User
Sun Jun 30, 2013 10:38 pm
Reply with quote
Report this post
Cyberek wrote:The overview is made with News Show Pro GK5, so You should search for:
MOD_NEWS_PRO_GK5_COM_VIRTUEMART_CART_ADD_TO
in file /language/en-GB/en-GB.mod_news_pro_gk5.ini
(or your language file)
There are also other virtue mart phrases.


The circle is not done by image, but with css3:
Code: Select all
.gkNspPM-ProductGallery .gkImage .gkImgOverlay {
background: #00793B;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}

You can use override.css to change it to rectangle etc (set border radius to 0).


Is it possible to assing images in stead of shapes? if so.. How?

Thanks for the language thingy about add to cart, couldnt find that one! :)
User avatar
Senior Boarder

GK User
Mon Jul 01, 2013 8:28 am
Reply with quote
Report this post
Code: Select all
.gkNspPM-ProductGallery .gkImage .gkImgOverlay {
background: #00793B url(../images/imagename.png) 0 0 no-repeat;
-webkit-border-radius:0;
-moz-border-radius: 0;
border-radius: 0;
}


Place file imagename.png (or difrent name but update it in above code) in template/omg folder.
User avatar
Moderator


cron