Hi Chris and others,
I tried changing the default settings in global/page.html to change the outlook of the pages. In the global_styles block I was able to push the margins further up (leaving very small margins on the top), but I cannot reduce margins on the left and right. This is what I did for fixing margins at the top:
{% block global_styles %}
<style>
.page-header {
margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
}
</style>
{% endblock %}
I tried adding the following to reduce left and right margins but there is no change:
body {
margin: 0px;
}
I also tried editing the html files directly to see if side margins change but that didn't work either. Please can you advise?