Hello,
My mulicolumn title is centering on mobile with my CSS but not desktop. Any idea why? Thank you. Screenshot attached.
Hello,
My mulicolumn title is centering on mobile with my CSS but not desktop. Any idea why? Thank you. Screenshot attached.
Hi @ellacoker
Please replace text-align: center with
text-align: center;
align-items: center;
justify-content: center;
Please like and accept solution if it works for you
Thanks!
Hi @ellacoker , please use this instead:
.multicolumn__title {
text-align: center;
justify-content: center;
align-items: center;
}