Thanks for the suggestion playing2012, but Bombax already includes text-align: center
in the body tag. Also, Bombax uses body
in the same way most themes use wrap
— in this case Bombax is customizable via the admin gui, and I’ve set the maximum width for the page to 1000px, and Bombax outputs the css:
body {
text-align: center;
max width: 1000px;
margin: 0 auto; /*added by me in the child theme<strong>EDIT:see below</strong>*/
}
however the whole page still sits hard against the left side of the monitor.
**********************************************
NEVERMIND I’m just an idiot ??
looking closer at my actual code after I wrote the above, I discovered in my child theme I had written:
#body {margin: 0 auto;}
(as an id, rather than just the body tag)
Thanks for the help playing2012, and now I feel bad for hijacking ctec67’s thread!
(tl;dr – resolved for me, however I can’t speak for ctec67)