I was wondering if anyone could help as I seem to be facing issues when making minor CSS changes to my site. Essentially I would like to reduce the margin of a section on my website from 75px to 35px (see attached image).
I am adding the following code to my theme.css but nothing seems to be changing? For reference I am using the Impulse v5.5.0 (Shopify 2.0 Version).
@ClarityStudio you are almost correct but “shopify-section-template–15698490556646__16447955234b11503c” is id not class name so you need to add # instead .
so this would be the css
#shopify-section-template--15698490556646__16447955234b11503c {
margin: 35px 0;
}
Many thanks for your response - I realised I added the ‘.’ instead of ‘#’ but still no luck even with the correct bit of code. For some reason it looks like any css changes I add to my theme.css file do not show up. Have you experienced this before?