When I inspect a web page I encounter an section element as
section#sp-bottom
In the styles console, I see
#sp-bottom (
margin: 10px 0px 0px 0px;
}
When I change the above 10px
to 0px
, I can see the page margin of 10px
disappear.
Then in my custom.css
of the template, i added
#sp-bottom {
margin: 0px 0px 0px 0px;
}
But after clearing cache the page & browsing history, i still shows the 10px
Some please teach.