What I want to do is take down the width of my components to around 70% and have it centered on the page.
I do this by creating a layer of type 'layout' right?
Then using code to the effect of:
function Page::print_custom_head() {
"""
style type="text/css">
table {
width:80%;
float:center;
}
table table {
width: 80%;
float:center;
}
hr {
width:80%;
float:center;
}
/style>
""";
}
Is this type of code correct?