Mobile view issue

Discussion in 'BusinessGrow One Page WordPress Theme' started by deveshd, Mar 2, 2015.

  1. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    In the mobile view, How do I
    1. Change the color of the phone number as it looks like blue link which is not readable on dark background?

    2. hide the scroller arrows on both side of slider ONLY in mobile view as it looks out of proportion there. See screenshot below:

    [​IMG]
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi deveshd!

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

    1>
    Code:
    div#call_us p {
    color: red !important;
    }
    2>
    Code:
    @media screen and (max-width: 860px){
    .flex-direction-nav .flex-prev {
    display: none !important;
    }
    .flex-direction-nav .flex-next {
    display: none !important;
    }
    }
    Thanks,
    Praveen
     
  3. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    1> That codes changes the color for the whole text and number and on all devices and also the number turning blue on mobile issue is not resolved.

    Any way I can keep white number and text on computers and only number to be red on mobile browsers?

    If above is not possible, how do I change the background color of that top bar and phone icon?
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi deveshd!

    Please follow the screenshot given below.
    businessgrow_Add_Span_call_us.png

    Now paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    @media only screen and (max-width: 767px){
    span.call_number {
    color: red;
    }
    }
    Thanks,
    Praveen
     
  5. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    I have done this but the number on phone is still showing in blue, please see my codes screenshot below.
    Screen Shot 2015-03-03 at 10.07.04 AM.png

    Please let me know how I can make that grey top bar into same green as theme green and the phone icon black etc so even the blue is fine in case viewed on mobile devices.
     
  6. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi deveshd!

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

    Code:
    @media only screen and (max-width: 767px){
    div#call_us img {
    background: black !important;
    padding: 8px !important;
    border-radius: 50% !important;
    }
    .social_wrapper {
    background: #9FC14A !important;
    }
    }
    Thanks,
    Praveen
     
  7. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    works, thanks!
     

Share This Page