You haven't made those changes in override.css. Probably in gk.stuff.css. I would suggest to use some kind of visual diff tool to compare original files with those on your site.
Generation of "about" icons is made in file:
templates/gk_creativity/js/gk.scripts.js
with this code:
- Code: Select all
// team overlays
if(document.getElement('.gkTeam')) {
var figures = document.getElements('.gkTeam figure');
figures.each(function(figure, i) {
if(
figure.getProperty('data-fb') != null ||
figure.getProperty('data-twitter') != null ||
figure.getProperty('data-gplus') != null
) {
var overlay = new Element('div', {
'class': 'gkTeamOverlay'
});
var htmloutput = '';
var classcounter = 0;
if(figure.getProperty('data-fb') != null) {
htmloutput += '<a href="'+figure.getProperty('data-fb')+'" data-type="fb">Facebook</a>';
classcounter++;
}
if(figure.getProperty('data-twitter') != null) {
htmloutput += '<a href="'+figure.getProperty('data-twitter')+'" data-type="twitter">Twitter</a>';
classcounter++;
}
if(figure.getProperty('data-gplus') != null) {
htmloutput += '<a href="'+figure.getProperty('data-gplus')+'" data-type="gplus">Google+</a>';
classcounter++;
}
overlay.set('html', htmloutput);
overlay.addClass('gkIcons' + classcounter);
overlay.inject(figure.getElement('img') , 'after');
figure.addEvents({
'mouseenter': function() {
figure.addClass('hover');
var linksAmount = figure.getElements('.gkTeamOverlay a').length;
for(i = 0; i < linksAmount; i++) {
gkAddClass(figure.getElement('.gkTeamOverlay').getElements('a')[i], 'active', i);
}
},
'mouseleave': function() {
figure.removeClass('hover');
figure.getElements('.gkTeamOverlay a').removeClass('active');
}
});
}
});
}
You would need to either modify one of available data types or create your own.