• I want to stretch the layout of the mobile container. Is there any css code which can help me to do that?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @nebadita,

    Here’s a CSS you can try adding in Appearance > Customize > Additional CSS:

    @media (max-width: 768px) {
    .container .content-area .inside-article {
    padding-left: 0;
    padding-right: 0;
    }
    }

    Thread Starter nebadita

    (@nebadita)

    Hi fernandoazarcon2
    thanks for the code. However, it is working but when I am trying to change the padding it is not working anymore. Can you please help me with that?

    And can you please let me know if there is any css for drop cap?

    Leo

    (@leohsiang)

    Doesn’t look like the CSS actually worked.

    Try this instead:

    @media (max-width: 768px) {
        .container .content-area .inside-article {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
    }

    And can you please let me know if there is any css for drop cap?

    This isn’t a theme related or theme specific question so I’d recommend Google “CSS Drop cap” to see some suggestions.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Want to stretch mobile layout’ is closed to new replies.