I have an issue with my pagination style showing up in my menu. See picture:
I am currently using this code in theme.liquid underneath
.slider-buttons .slider-counter__link { margin: 1rem 4px !important; padding: 0px !important; width: 100px; background: #ffffff33; } .slider-mobile-gutter .slider-buttons { position: absolute; left: 50%; bottom: 10px; z-index: 99; border: unset; transform: translate(-50%, 0px); } .slider-buttons .slider-button { display: none !important } .slider-buttons .slider-counter__link--dots .dot { border-radius: unset; width: 10rem; } .slider-buttons .slider-counter__link { padding: 1rem 4px; } .slider-buttons .slider-counter__link--dots .dot { background: #ffffff3d; } .slider-buttons .slider-counter__link--active.slider-counter__link--dots .dot { background: #fff; transition: 0.4s linear; transition-property: width, background-color; width: 100%; animation: progressAnimationStrike 3s; } @keyframes progressAnimationStrike { from { width: 0 } to { width: 100% } }Can someone help me with this. ![]()

