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.
Can you help me correct this double display?
Thank you in advance,
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
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
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