Hello, I have the problem that the header gets bigger as soon as you hover over a category with the mouse cursor. The reason for this is probably the coding that is for the box around the categories. But I would like to still keep this box. Could you maybe help me with that?
In the left-hand sidebar, navigate to the “Assets” folder and open the file that contains your theme’s CSS (usually named theme.scss.liquid or theme.css.liquid).
Scroll down to find the CSS code related to the hover effect on the categories.
/* Example CSS code */
.navigation__dropdown-link:hover {
/* Hover styles here */
font-size: 20px;
color: red;
}
​