Code:
html {
margin-left: -27px;
margin-right: -27px;
}
the above works great, but how do I change the top margin?
adding the below seems to have no effect on the output.
Code:
html {
margin-left: -27px;
margin-right: -27px;
margin-top: -27px;
}
edit: also tried adding !important, but that gets me zilch too.