Hello. I have a simple site using the Poole/Lanyon theme. I don’t want the page content to be centered, so I edited the poole.css file from this:
.container {
max-width: 38rem;
padding-left: 1rem;
padding-right: 1rem;
margin-left: auto;
margin-right: auto;
}
to this:
.container {
max-width: 38rem;
padding-left: 1rem;
padding-right: 1rem;
margin-left: 5%;
margin-right: 0%;
}
I then pushed the changes to the site. When I visit the site with a web browser, I can see the changes in the stylesheet, but they aren’t applied to the site until I edit the stylesheet using the F12 or inspect element menu. All I have to do is change a comment or something, and the browser seems to reload the stylesheet, realize there are changes (including the margin ones I made above), and apply those, too.
My question is, why aren’t the CSS changes being applied from the very beginning?
Thanks!