Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #976925

    Hi.

    How is possible to get code block width to 100%? Code block is now inside color section.
    I named color section id to #360block and tried code:

    #360block .container { max-width: 100%; padding: 0; margin: 0; !important;}

    … But that doesn’t make a trick.

    #976958

    Hey stakavainio,

    https://cl.ly/3e0X1s1g1g0K The id cannot start with the number. Please change id to #block360 and try the code below

    
    .responsive #block360 .container {
        max-width: 100%;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #977125

    Hi.

    Now it works fine. Thanks.

    Only mobile view still have those padding/margin -values. Is it possible to fix with css?

    #977317

    Hi,

    Thanks for the update.

    Use this css code to adjust the width of the container inside the “block360” section.

    .responsive #top #wrap_all #block360 .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    Best regards,
    Ismael

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