How do I center the full page ?
I tried adding my object.css.css file:
#content {
width: 700px ;
margin-left: auto ;
margin-right: auto ;
}
But that didnt help. I also tried:
.field
{
margin:auto;
width:70%;
}
But that didn’t include h1 elements
Thanks.
EDIT: https://i.stack.imgur.com/MeFSt.jpg
This isn’t really a Ruby on Rails question as much as it is an HTML/CSS question. Your stylesheet should contain something like:
And of course, whatever other content your layout contains can have other effects.