Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1405730

    On mobile view, the Facebook icon is not centered. Could you please check and advise?

    #1405775

    Hi bemodesign,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
      #socket .copyright {
        min-height: 30px;
        line-height: 30px;
      }
    
      #socket .social_bookmarks li {
        top: 0;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    #1405777

    Nope, still shows up on the right side on mobile. Can we get it in the center of the page?

    #1405890

    Can we get it in the center of the page?

    #1405891

    On mobile view it is not centered.

    #1405940

    Hi bemodesign,

    Can you try to remove the code I gave and replace it with:

    @media only screen and (max-width:767px) {
      #socket .container {
        display: flex;
        flex-direction: column-reverse;
      }
    
      #socket .copyright {
        display: block;
        float: none;
        text-align: center;
        min-height: 30px;
        line-height: 30px;
      }
    
      #socket .social_bookmarks li {
        top: 0;
      }
    }

    Best regards,
    Nikko

    #1405964

    Agh! It is centered on Mobile, but not Desktop! Can you give me code for desktop also?

    #1405985

    Hi,
    Try adding this CSS for centering the icon on desktops in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (min-width: 768px) { 
    #top #socket .social_bookmarks {
        width: 100%;
        top: -30px;
    }
    #top #socket > .container {
        max-height: 60px;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.