NiceThemesService Link Hover Color – NiceThemes http://nicethemeswp.com/forums/topic/service-link-hover-color/feed/ Wed, 23 Apr 2025 14:54:41 +0000 http://bbpress.org/?v=2.5.12-6148 en-US http://nicethemeswp.com/forums/topic/service-link-hover-color/#post-4257 <![CDATA[Service Link Hover Color]]> http://nicethemeswp.com/forums/topic/service-link-hover-color/#post-4257 Thu, 12 Jun 2014 22:07:32 +0000 saiyaex Hi,

So I’m trying to change the hover colour of the text for the services links on the main page. When I change the primary link color, all is well and the color changes. However, the hover attribute does not seem to be working. Regardless of the color I set the hover to, the link does not change colors.

My code:
.home-service ul li .content .service-title a{
color: #43484d;
hover: #ffffff;
}

Any help would be appreciated. Thanks.

]]>
http://nicethemeswp.com/forums/topic/service-link-hover-color/#post-4258 <![CDATA[Reply To: Service Link Hover Color]]> http://nicethemeswp.com/forums/topic/service-link-hover-color/#post-4258 Thu, 12 Jun 2014 22:25:36 +0000 Juanfra Aldasoro Hello,

Thanks for writing. Hover is not a property of the a element, it is a selector.

The code should be:

.home-service ul li .content .service-title a{
   color: #43484d;
}

.home-service ul li .content .service-title a:hover{
   color: #fff;
}

Best,
Juan.

]]>
http://nicethemeswp.com/forums/topic/service-link-hover-color/#post-4259 <![CDATA[Reply To: Service Link Hover Color]]> http://nicethemeswp.com/forums/topic/service-link-hover-color/#post-4259 Thu, 12 Jun 2014 23:05:25 +0000 saiyaex Thanks so much! As usual, fast and amazing support.

]]>
http://nicethemeswp.com/forums/topic/service-link-hover-color/#post-4260 <![CDATA[Reply To: Service Link Hover Color]]> http://nicethemeswp.com/forums/topic/service-link-hover-color/#post-4260 Fri, 13 Jun 2014 01:10:49 +0000 Juanfra Aldasoro Thanks for your kind words.

Have a nice day,
Juan.

]]>