How do I align the text block to the left of the mark? On the desktop I used the padding: 50px 30px 50px 30px ; but on the device does not keep the same alignment.
What is the best way to solve this?
Hey mleite1,
Try this in Quick CSS:
@media only screen and (max-width: 989px) {
.sh {
padding: 50px 30px 50px 0;
}
}
Best regards,
Rikard
Rikard, thanks for the help. In none of the two tickets answered came effect. Nothing has changed by entering the codes.
The text block does not line the left of the brand on device
Hi,
Try this instead:
@media only screen and (max-width: 989px) {
.sh {
padding: 50px 30px 50px 0 !important;
}
}
Best regards,
Rikard
Hello Rikard, I inserted the above code and the mark does not align with the text. See picture below.