Tap to call button

Discussion in 'Woodpecker WordPress Business Theme' started by greatscottfilm, Aug 28, 2017.

  1. greatscottfilm

    greatscottfilm Guest

    Joined:
    May 30, 2014
    Messages:
    109
    Likes Received:
    1
    I need to change the tap to call button's background color to red, can you give code for that please? Thank you
     
  2. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Hi,

    To change the background color of the tap to call button, just paste the code given below in Custom CSS section.
    (Dashboard->Inkthemes->Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .top-icons a.button-def {
        background: red;
    }
    .button-def{
        border: 1px solid red;
    }
    Hope this helps...!

    Thanks & Regards!
    Akbar
    InkThemes.com
     
  3. greatscottfilm

    greatscottfilm Guest

    Joined:
    May 30, 2014
    Messages:
    109
    Likes Received:
    1
    Thanks Akbar
     
  4. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
  5. larrybrower

    larrybrower New Member

    Joined:
    May 29, 2015
    Messages:
    8
    Likes Received:
    0
    I'd like to change the color to hex code #1D5585. Can I insert that code into the CSS code where the word "red" appears above?
     
  6. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Hello,

    Yes, you can do this, just use like this:

    Code:
    .top-icons a.button-def {
        background: #1D5585;
    }
    .button-def{
        border: 1px solid #1D5585;
    }
    Hope this helps...!

    Regards,
    Akbar
    InkThemes.com
     
  7. larrybrower

    larrybrower New Member

    Joined:
    May 29, 2015
    Messages:
    8
    Likes Received:
    0
    Sorry, Akbar. That code seems to change nothing. I also tried #F1AD1B (gold), which is another color on my home page, just to test. No change. Any idea what might be blocking the code?
     
  8. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Put that code in an Additional CSS section, just go to (Dashboard->Appearence->Customize->Additional CSS)
    Hope this helps...!
     
  9. larrybrower

    larrybrower New Member

    Joined:
    May 29, 2015
    Messages:
    8
    Likes Received:
    0
    Yes, it did! I also have it in Dashboard->Inkthemes->Theme Options -> Styling Options -> Custom CSS. Can I safely remove it from there? Or do I need both? Thanks!
     
  10. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Yes, you can remove from there...
     

Share This Page