Link images and effect

Professional Joomla social template with metro design and JomSocial extension support.
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
Tue Sep 10, 2013 8:58 pm
Reply with quote
Report this post
Hi, GREAT template!!

But, how could I link the images??
And have the same effect when the mouse is over??

Thanks a lot

seeyouaupair.com/prova1
User avatar
Gold Boarder

GK User
Thu Sep 12, 2013 9:25 am
Reply with quote
Report this post
Hi,

You can check the template configuration here: http://www.gavick.com/documentation/joo ... iguration/
User avatar
Administrator

GK User
Thu Sep 12, 2013 5:14 pm
Reply with quote
Report this post
Hi, yes I had read it but I don't know why the oppacity effect don't work
User avatar
Gold Boarder

GK User
Thu Sep 12, 2013 5:16 pm
Reply with quote
Report this post
Sorry, the image...
User avatar
Gold Boarder

GK User
Fri Sep 13, 2013 6:46 am
Reply with quote
Report this post
The opacity animation is not connected with the Grid GK5 module - it is connected with the specific grid block. Please open the gk.stuff.css file and change the following code:

Code: Select all
.gkPhoto > a {
   height: 100%;
   opacity: 1; filter: alpha(opacity=100);
   position: absolute;
   text-indent: -9999px;
   -webkit-transition: all .3s ease-out;
   -moz-transition: all .3s ease-out;
   -ms-transition: all .3s ease-out;
   -o-transition: all .3s ease-out;
   transition: all .3s ease-out;
   -webkit-transform: translate3d(0, 0, 0);
   -moz-transform: translate3d(0, 0, 0);
   -ms-transform: translate3d(0, 0, 0);
   -o-transform: translate3d(0, 0, 0);
   transform: translate3d(0, 0, 0);
   width: 100%;
}
.gkPhoto > a:hover {
   opacity: 0.85; filter: alpha(opacity=85);
}


to:

Code: Select all
.gkPhoto > a {
   height: 100%;
   opacity: 1; filter: alpha(opacity=100);
   position: absolute;
   text-indent: -9999px;
   -webkit-transition: all .3s ease-out;
   -moz-transition: all .3s ease-out;
   -ms-transition: all .3s ease-out;
   -o-transition: all .3s ease-out;
   transition: all .3s ease-out;
   -webkit-transform: translate3d(0, 0, 0);
   -moz-transform: translate3d(0, 0, 0);
   -ms-transform: translate3d(0, 0, 0);
   -o-transform: translate3d(0, 0, 0);
   transform: translate3d(0, 0, 0);
   width: 100%;
}
.gkPhoto {
   opacity: 1; filter: alpha(opacity=100);
   -webkit-transition: all .3s ease-out;
   -moz-transition: all .3s ease-out;
   -ms-transition: all .3s ease-out;
   -o-transition: all .3s ease-out;
   transition: all .3s ease-out;
}
.gkPhoto:hover {
   opacity: 0.85; filter: alpha(opacity=85);
}
User avatar
Administrator

GK User
Fri Sep 13, 2013 4:42 pm
Reply with quote
Report this post
Greeeeaaaat!!

Thanks a lot.
User avatar
Gold Boarder


cron