Home › Forums › WoodMart support forum › We are facing a problem with the bottom frame on the phone › Reply To: We are facing a problem with the bottom frame on the phone
March 6, 2025 at 7:52 am
#643247

Aizaz Imtiaz Awan
Keymaster
Hello,
Please add below Custom CSS code to Theme Settings > Custom CSS > Desktop CSS:
@media (min-width: 768px) {
.whb-header-bottom .wd-marquee {
animation: none !important; /* Disable marquee effect */
overflow-x: auto !important; /* Enable horizontal scrolling */
white-space: nowrap !important; /* Prevent wrapping */
display: flex !important;
gap: var(--wd-marquee-gap);
max-width: 100vw;
scrollbar-width: none;
}
.whb-header-bottom .wd-marquee-content {
animation: none !important; /* Disable marquee scrolling animation */
min-width: auto !important; /* Ensure content fits naturally */
}
.whb-header-bottom .wd-marquee::-webkit-scrollbar {
width: 0;
height: 0;
background: transparent;
}
.whb-header-bottom .wd-marquee {
-ms-overflow-style: none; }
}
Best Regards,