Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #837684

    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?

    http://d.pr/i/Qz6GLU

    LINK
    http://www.milk9.com.br/milk9marcas

    #838135

    Hey mleite1,

    Try this in Quick CSS:

    @media only screen and (max-width: 989px) {
    .sh {
        padding: 50px 30px 50px 0;
    }
    }

    Best regards,
    Rikard

    #838334

    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

    • This reply was modified 6 years, 7 months ago by mleite1.
    #838440

    Hi,

    Try this instead:

    @media only screen and (max-width: 989px) {
    .sh {
        padding: 50px 30px 50px 0 !important;
    }
    }

    Best regards,
    Rikard

    #839565

    Hello Rikard, I inserted the above code and the mark does not align with the text. See picture below.

    LINK
    https://d.pr/i/DtYqEe

    #841241

    Hi,

    Thanks for that, please try this instead:

    @media only screen and (max-width: 989px) {
    .sh {
        padding: 50px 30px 50px 10px !important;
    }
    }

    Best regards,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.