A Couple of Questions

Discussion in 'Appointway WordPress Theme' started by bizgirl, Feb 25, 2017.

  1. bizgirl

    bizgirl Member

    Joined:
    Feb 4, 2013
    Messages:
    145
    Likes Received:
    7
    Hi there guys.

    Would really appreciate your help with CSS code the following 3 questions.

    1. How to remove the phone image and tap to call. I tried some CSS I found for this in the forum but it did not
    work.

    2. My client would like the menu bar color changed to gold. Could you provide with code to do this and the
    code for the text color also.

    3. Could you please provide code to change the hover color and text color.

    Site is www.keziahsreadings.com

    Many thanks as always.

    Maggie
    [​IMG]
     
  2. nitin

    nitin Guest

    Hi,

    Greetings from InkThemes,

    I would be assisting you on your issue(s) one-by-one :-

    1. How to remove the phone image and tap to call.

    Please paste the code given below in Custom CSS section
    (Dashboard-> InkThemes-> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .call-us p:before {
        display: none;
    }
    @media only screen and (max-width: 768px){
    .taptocall {
        display: none;
    }
    }
    
    2. My client would like the menu bar color changed to gold.

    Use the custom CSS code mentioned below:-
    Code:
    .menu_container {
        background: #d9b1f9;
    }
    
    Note:- The above value for the color code is the one that is presently set in your theme, please change the values accordingly

    3. Could you please provide code to change the hover color and text color.

    Use the custom CSS code mentioned below:-
    Code:
    #menu li a:hover {
        color: #facff5;
    }
    
    Note:- The above value for the color code is the one that is presently set in your theme, please change the values accordingly

    Hope this helps...!

    Thanks & Regards!
    Nitin
    InkThemes.com
     
    bizgirl likes this.

Share This Page