Hello,
My mulicolumn title is centering on mobile with my CSS but not desktop. Any idea why? Thank you. Screenshot attached.
A user is experiencing an issue where their multicolumn section title centers correctly on mobile devices but not on desktop, despite having CSS applied.
Problem Details:
Proposed Solutions:
Two community members suggested similar CSS fixes:
text-align: center with additional flexbox propertiesalign-items: center and justify-content: center to the .multicolumn__title classThe discussion remains open pending confirmation from the original poster on whether the suggested solutions resolved the issue.
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;
}