Reply To: Proper way to center text and button Home Feature #3 Gray

Homepage Community Forums Epik Theme Support Proper way to center text and button Home Feature #3 Gray Reply To: Proper way to center text and button Home Feature #3 Gray

#10628
kronos
Customer

    Can they be in divs? If so, you can add this –

    <div class="center"><p>An on-site photo shoot, extensive photo editing and delivery of appropriately licensed images included in all proposals.</p></div>

    Or –

    <p class="center">An on-site photo shoot, extensive photo editing and delivery of appropriately licensed images included in all proposals.</p>

    Then add the styling for the “.center” class in your css –

    .center {
        text-align: center;
    }