Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #853871

    scottkwilson
    Participant

    Hello. I added my phone number and email address to the x-topbar, but on the iPhone, the color behind the text changes to black when it should be #202020. Here is a link to a pic so you can see what I mean. How do I make this the same color as the background. On the website it is the same color.

    http://scottkeithwilson.com/wp-content/uploads/2016/03/IMG_1532.png

    #853928

    Rad
    Moderator

    Hi there,

    Thanks for writing in.

    Please add this CSS to Admin > Appearance > Customizer > Custom > CSS. Some browser add links to phone numbers and emails.

    .x-topbar a {
    color: #202020 !important;
    }

    Hope this helps.

    #855022

    scottkwilson
    Participant

    Hello. Unfortunately it didn’t work. Here is the result of adding that CSS

    http://scottkeithwilson.com/wp-content/uploads/2016/03/phone-pic.png

    #855032

    Darshana
    Moderator

    Hi there,

    Could you please try adding the following CSS media query instead.

    
    @media (max-width: 768px) {
      .x-topbar .p-info {
        background-color: #202020;
      }
    }
    

    Hope that helps.

    #855079

    scottkwilson
    Participant

    That did the trick. Fantastic! Thank you!

    #855091

    Thai
    Moderator

    You are most welcome 🙂