Home Forums Support Edit responsive

  • This topic has 7 replies, 2 voices, and was last updated 8 years ago by Tom.
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #183136
    inma_b_p

    Hello everybody

    Do you know how I can modify the movile view.

    Is it any option that I couldn’t found or I need a plugin

    Thanks in advance

    Lada

    #183216
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    What are you wanting to do to it?

    #183292
    inma_b_p

    Hi Tom

    I want to watch the page in the movile without the lateral margins and display the pictures in the left of the text, not centered in the main page, as in the desktop version.

    Is it possible?

    Thanks for your help

    #183350
    Tom
    Lead Developer
    Lead Developer

    I’m not sure what you mean by lateral margins?

    For the images, try this CSS:

    @media (max-width: 768px) {
        .alignleft {
            float: left;
            margin-right: 10px;
        }
        .alignright {
            float: right;
            margin-left: 10px;
        }
    }

    Adding CSS: https://generatepress.com/knowledgebase/adding-css/

    #184489
    inma_b_p

    Hi Tom

    It does not work.
    Is in the mobile version, in vertical, when the blog display so narrow.

    Can you help me?

    Thanks in advance

    LAda

    #184555
    Tom
    Lead Developer
    Lead Developer

    Can you link me to your site?

    #185145
    inma_b_p

    Hello Tom

    My website is http://www.elcucharonverde.com

    Thanks

    LAda

    #185198
    Tom
    Lead Developer
    Lead Developer

    Ah, you’ll want to use this CSS:

    @media (max-width: 768px) {
        .one-container .site-content {
            padding-left: 20px;
            padding-right: 20px;
        }
        .post-image-aligned-left .post-image {
            margin-right: 2em !important;
            float: left !important;
        }
    }
Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.