Archived topic
align element header for mobile
3 replies · Started by Torsten on March 29, 2023
Hi,
I would need your help with aligning the text in the header element with the text below for mobile, each of the 4 lines with a 20px left-padding and a 40px top- and 30px bottom-padding.
Can you help?
Thx ahead,
Torsten
Hi Torsten,
try this CSS:
@media(max-width: 768px) {
.nav-contact {
padding: 40px 0 30px 20px;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
cool, thanks alot!
I added text-align: left; as for some reason the lines were right-aligned on mobile only.
;-)
best,
Torsten
Glad to hear that :)