Open WPDevHQ opened 7 years ago
When using the Box Element and choosing to center the content, the title doesn't get centered correctly.
This is due to the margin applied to it - changing it to padding instead works! .tailor-ui .tailor-box__title { display: block; margin: 1em 0; }
.tailor-ui .tailor-box__title { display: block; margin: 1em 0; }
When using the Box Element and choosing to center the content, the title doesn't get centered correctly.
This is due to the margin applied to it - changing it to padding instead works!
.tailor-ui .tailor-box__title { display: block; margin: 1em 0; }