How to not display the top right contact info in mobile view?

Discussion in 'ColorWay WordPress Theme' started by designstouch, Mar 28, 2015.

Thread Status:
Not open for further replies.
  1. designstouch

    designstouch Member

    Joined:
    Feb 23, 2013
    Messages:
    133
    Likes Received:
    2
    Hi Support Team,

    I have added phone number and email on top right below is the css info. However it overlaps the logo in mobile view. Is there anyway way to not display top contact info in mobile view?

    Thank you,

    .top_right_corner {
    float: right;
    font-size:14pt;
    margin-top:-70px;
    margin-right: 40px;
    line-height: 0.2;
    }
     
  2. sameerwalkar

    sameerwalkar Guest

    Hi,

    Kindly provide your site URL.

    Regards,
    Sameer
     
  3. designstouch

    designstouch Member

    Joined:
    Feb 23, 2013
    Messages:
    133
    Likes Received:
    2
  4. sameerwalkar

    sameerwalkar Guest

    Hi,

    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)
    .top_right_corner {
      display: none;
    }
    Regards,
    Sameer
     
  5. designstouch

    designstouch Member

    Joined:
    Feb 23, 2013
    Messages:
    133
    Likes Received:
    2
    Hi Sameer,

    The code you provided is not working.

    Thank you,
     
  6. sameerwalkar

    sameerwalkar Guest

    Hi,

    Ohh am sorry I forget to apply curly brackets for media only screen now try below code again it should work:

    Code:
    @media only screen and (max-width: 767px){
    .top_right_corner {
      display: none;
    }}
    Regards,
    Sameer
     
  7. designstouch

    designstouch Member

    Joined:
    Feb 23, 2013
    Messages:
    133
    Likes Received:
    2
    Sameer, no worries!
    Thank you! Problem solved.
     
Thread Status:
Not open for further replies.

Share This Page