• Closed
  • Loretta Steffen
    Spectator
    09.08.2016 at 17:04 #29668

    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

    Loretta Steffen
    Spectator
    Posts: 7
    09.08.2016 at 17:12 #29669
    This reply has been marked as private.
    Daniel Jones
    Spectator
    Posts: 148
    09.08.2016 at 17:20 #29670

    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.

    Loretta Steffen
    Spectator
    Posts: 7
    09.08.2016 at 17:43 #29671

    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 🙂

    Denzel Chia
    Moderator
    Posts: 2656
    10.08.2016 at 04:28 #29681

    Hi,

    Please use the following in Theme Options -> Custom CSS

    .page .entry-content a:hover {
    text-decoration: underline !important;
    }

    Thank you

    Loretta Steffen
    Spectator
    Posts: 7
    10.08.2016 at 17:21 #29692

    That worked – thanks so much!

    Did you see my other 2 questions?

    Denzel Chia
    Moderator
    Posts: 2656
    10.08.2016 at 18:25 #29695

    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

    Loretta Steffen
    Spectator
    Posts: 7
    10.08.2016 at 21:14 #29700

    For question 2 – thanks, that resolved the issue.

    For question 3 – is it possible to autoplay without the fade animation?

    Denzel Chia
    Moderator
    Posts: 2656
    11.08.2016 at 01:35 #29704

    Hi,

    Please try using the following in Theme Options -> Custom CSS

    .flex-active-slide {
    opacity: 1 !important;
    }

    Works for me..

    Thank you