I want to change the icons in gk_short menu against roll over images.
I found the pixellove font and also gk_stuff.css
but how can I change the icon against roll over images (if possible)?
teitbite wrote:Hi
I'm afraid I do not understand, can You please show me what icons You have in mind and also what roll over effect would You like to have ??
<li data-scroll-reveal="enter bottom over .5s after .25s" data-scroll-reveal-id="4" data-scroll-reveal-initialized="true" data-scroll-reveal-complete="true"><a href="#menu"><i class="gk-icon-dinner-set-solid"></i> <span>Menu</span></a></li>
<li data-scroll-reveal="enter bottom over .5s after .25s" data-scroll-reveal-id="4" data-scroll-reveal-initialized="true" data-scroll-reveal-complete="true"><a href="#menu"><i class="fa fa-facebook"></i> <span>Menu</span></a></li>
#gkHeaderMod .gk-short-menu i.fa:before {
transition: all 0.2s linear 0s;
-webkit-transition: all 0.2s linear 0s;
-moz-transition: all 0.2s linear 0s;
-ms-transition: all 0.2s linear 0s;
-o-transition: all 0.2s linear 0s;
color: #ffffff;
}
#gkHeaderMod .gk-short-menu i.fa:before:hover {
color: #dddddd;
}
<a class="fa fa-facebook">Facebook</a>
.item-content h6 { font-family: 'font-family: 'Abel', sans-serif', Arial, sans-serif; }
teitbite wrote:
- Code: Select all
#gkHeaderMod .gk-short-menu i.fa:before:hover {
color: #dddddd;
}
#gkHeaderMod .gk-short-menu i.fa:hover:before {
color: #dddddd;
}