For the desktop version i added to the text “text-align: justify” but on the mobile phone it doesn’t look good.
So i tried to add @media only screen and (max-width: 767px) { .avia_textblock p{text-align: left}} – but it doesn’t work.
Can you give me an advice please?
Hey leoadmin,
Please try the following instead:
@media only screen and (max-width: 767px) {
.avia_textblock p {
text-align: left !important;
}
}
Best regards,
Rikard
Thanks Rikard, it works!