Problem with social container

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #10341
    IT EXPERIENCE
    Participant

    Hi
    I have a problem with the display of the “social-container”.
    I can not see them in the mobile phone.
    Even the menu does not look good in the mobile phone.
    The site is: http://www.spazioinvista.it

    Thanks for your help

    #10353
    Veena
    Moderator

    Pls add the below custom CSS in themeoptions –

    @media only screen and (max-width: 767px)
    .social-container {
    display: inline-block;
    }
    @media only screen and (max-width: 767px)
    .social-container {
    position: absolute;
    display: inline-block;
    top: 0;
    margin-top: 60px;
    }
    @media only screen and (max-width: 479px)
    #site-logo a, .social-container {
    display: block;
    /* text-align: center; */
    }
    @media only screen and (max-width: 479px)
    #site-logo {
    position: relative;
    margin: 0 auto;
    top: 0;
    margin-top: 0; 
    }
    @media only screen and (max-width: 479px)
    .social-container {
    text-align: center;
    top: 0;
    margin-top: 60px;
    }
    
    #10371
    IT EXPERIENCE
    Participant

    It does not work properly with this css.
    The “social-container” overlaps with the slider I want to make it appear above the logo.
    Thanks

    #10386
    Veena
    Moderator

    Pls add the following custom CSS –

    @media only screen and (max-width: 767px)
    {
    .social-container {
    position: absolute;
    top: -20px;
    left: 0;
    margin-top: 0;
    }}
    
    #10388
    IT EXPERIENCE
    Participant
    This reply has been marked as private.
    #10396
    Veena
    Moderator

    You have missed opening and closing brace of media query, this was the only issue.I have corrected it.Pls check once.
    Thanks

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Problem with social container’ is closed to new replies.