• Closed
  • Loretta Steffen
    Spectator
    August 9, 2016 at 5:04 pm #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
    August 9, 2016 at 5:12 pm #29669
    This reply has been marked as private.
    Daniel Jones
    Spectator
    Posts: 148
    August 9, 2016 at 5:20 pm #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
    August 9, 2016 at 5:43 pm #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
    August 10, 2016 at 4:28 am #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
    August 10, 2016 at 5:21 pm #29692

    That worked – thanks so much!

    Did you see my other 2 questions?

    Denzel Chia
    Moderator
    Posts: 2656
    August 10, 2016 at 6:25 pm #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
    August 10, 2016 at 9:14 pm #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
    August 11, 2016 at 1:35 am #29704

    Hi,

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

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

    Works for me..

    Thank you