Hi guys, I’m wanting to put spaces/ gaps between certain items in my header menu, so that they stand out a bit more or are easier to read - but can’t work out how to do it. Can anyone give me the correct CSS coding please?
Try adding this to your theme’s Custom CSS section or inside your theme.css file:.header__menu-item:nth-child(2),
.header__menu-item:nth-child(4) {
margin-right: 20px; /* Adjust spacing as needed */
}
This should create some gaps between Gifts & Pokémon and Board Games & Sales. If you need more control, you can target the exact menu items using their specific classes or IDs (inspect them using your browser’s dev tools)