Hi,
Am using Evolve 2.6.8 with WordPress 4.5.3.
I would like to have all links change to underline on hover including top main nav, widget menus (sidebar and footer) and text links in page content.
Can you tell me how to do this?
Thanks
Hi Loretta,
Thank you for getting back to us.
Hmm, we can use the following CSS code to have the links underline on hover. Kindly add the CSS code on your Theme Options> Custom CSS
/*Underline links on hover*/
a:hover {
text-decoration: underline !important;
}
Please let me know if this helps.
Regarding the CSS code for links to underline on hover working:
no – links in page content still do not have underline on hover
yes – links in top nav menu and widget menus now have underline on hover
Thanks for the quick reply and help so far. It’s progress 🙂
Hi,
Please use the following in Theme Options -> Custom CSS
.page .entry-content a:hover {
text-decoration: underline !important;
}
Thank you
That worked – thanks so much!
Did you see my other 2 questions?
Hi,
For question 2.
Please use the following in Theme Options -> Custom CSS
This will reduce header in mobile, you can change the 90px to a larger value
@media screen and (max-width:768px){
.custom-header {
height: 90px !important;
}
}
For question 3
Edit the slider. Find the Autoplay setting, uncheck to disable it. It should stop the animation.
Thank you
For question 2 – thanks, that resolved the issue.
For question 3 – is it possible to autoplay without the fade animation?
Hi,
Please try using the following in Theme Options -> Custom CSS
.flex-active-slide {
opacity: 1 !important;
}
Works for me..
Thank you
The topic underline on hover is closed to new replies