Hey,
I am trying to get a text left-aligned yet centered to the page so i’ve given it a (custom headline) a class of “omtraininghead” and put this css code:
h2.omtraininghead{
margin-left: auto;
margin-right: auto;
}
but here’s what i get: http://imgur.com/a/qn6cn
I want to center the element such that the text starts in line with the paragraph below it.
How can I achieve this, and why isnt margin-left and right trick not working?
Thanks.