Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1481589

    Hi,

    The mobile version of my site displays a duplicate of the social media icon bar under the search bar and I can’t remove it. This anomaly only occurs on <479px screens.

    Capture d’écran 2025 04 18 à 12.31.38

    Can you help me correct this double display?

    Thank you in advance,

    #1481655

    Hey sitadi,

    The problem seems to disappear when the snippet in private is inactive. Please check the custom code that you have added.

    Best regards,
    Rikard

    #1481728

    Hey Richard,

    Thank you for your answer.
    However I searched but I can’t find the solution to my problem. I can’t display only one social media icon bar at the top right. A duplicate still appears despite my attempts to add CSS codes to hide or disable the 2nd display.
    Thank you in advance for your help

    #1481980

    Hi,

    Please try this CSS:

    @media only screen and (max-width: 479px) {
      .responsive #top #wrap_all .main_menu .social_bookmarks {
        display: none;
      }
    }

    You need to adjust this CSS though since it’s using !important:

    @media only screen and (max-width: 479px) {
      #header .social_bookmarks.icon_count_5 {
        position: absolute !important;
        top: 30px !important;
        right: 20px !important;
        display: flex !important;
        gap: 6px !important;
        margin: 0 !important;
        padding: 0 !important;
      }
    }

    A more specific selector should do the trick.

    Best regards,
    Rikard

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