1. PROMO Subscribe our All Access Pass @ 75% OFF & access all our 16+ premium Divi extensions: Divi Block Pro, Carousel Toolkit, etc.LEARN MORE
Dismiss Notice
NEW Divi.Help Pro Carousel AI Toolkit - Magically turn your Divi design into carousel, simply by using our online toolkit. No plugins needed. Now it works with Divi 5 as well!Try our carousel AI toolkit
BEST Divi Block - A revolutionary drag & drop tool to easily mix & match 960+ premade blocks (Light & Dark) to kick start your Divi site design. Special module designs are included as well. Also newly added AI generator & color. Now it works with Divi 5 as well!
Learn More About Divi BlockFree Version ~ 340+ Free Blocks

Solved Hover effects for buttons fail on mobile

Discussion in 'Free Divi Community Forum' started by Lera, Jun 6, 2019.

  1. Lera

    Lera New Member

    Hey there! I have an issue with hover effects on buttons in Divi on a mobile site. The site is built for mobile only, and the idea is to have the button font color change to orange on tap / on touch. At the moment the color is changing ONLY when the finger is pressing over it for a while. On light tap it is either not reacting at all, or changes to a weird brown color - not sure where this color comes from, since its not set anywhere.

    Here is the link to the website: https://www.itinerary001.com/berlin/
    **it can be viewed on mobile only!**

    I tried following with CSS:

    body #page-container a.et_pb_button:hover, a.et_pb_button:active, a.et_pb_button:focus {
    color: #ff6009!important;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    cursor: pointer;
    }

    Does not make a difference. Is there a way to fix this problem and get the color to be proper orange on light tap as well? Would be super grateful for any help!

    Thanks in advance,
    Lera
     
    1. PRO MEMBER PERKS Divi Ultimate Blog Plugin - Easily set awesome default design for your Divi single blog page:Learn More
  2. Lera

    Lera New Member


    UPD: solved by adding
    #page-container a.et_pb_button{
    transition:none!important;
    }

    to the code above - works great