Screen Margins?
-
If I want my modules to use up all of my screen real-estate, how do I make the “top-left” equate to the far left, upper corner of my monitor? Is it the CSS file I need to modify?
-
Try modifying the custom.css and add…
body {
margin: 0px;
height: 100%;
width: 100%;
}Reboot and see what you get. custom.css is where you should add the code as its loaded last and overrides the settings in the specific css files. This way you can update modules and not lose any custom work.
-
@Wedee Perfect! Thank you.