28-06-2024, 06:58
Ana Sayfa » Temalar » Emerald Light » global.css en alta
#main-menu kısmını değiştirerek sorunu çözebilirsiniz.
/* CSS for desktop (screen width >= 768px) */
#main-menu {
/* Your desktop menu styles here */
}
/* CSS for mobile (screen width < 768px) */
@media screen and (max-width: 767px) {
#main-menu {
display: none;
}
}