Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1138891

    Hi
    I would like to center content in socket on mobile device
    Please share the css with me :-)
    Thanks

    #1138892

    Another question
    When I create a layout like this :
    text-image
    image-text
    text-image

    It appears on mobile like this:
    text – image
    image -text
    text-image
    How do I get it to show the same way on mobile as on labtop?

    #1139360

    Hi,

    Could you post a link to where we can see the elements in question please?

    Best regards,
    Rikard

    #1139368
    This reply has been marked as private.
    #1140432

    Hi,

    Thank you for contacting us.

    The below code will make the socket copyrights text and menu center-aligned and stacked. You can remove the background color from the CSS code.

    
    @media only screen and (max-width: 786px) {
    
    #top.home footer .container {
        display: flex;
        background: gold;
        flex-direction: column;
        justify-content: center;
    }
    
    #top.home footer .copyright {
        display: flex;
        justify-content: center;
        background: lightblue;
    }
    
    #top.home footer .sub_menu_socket {
        display:flex !important;
        justify-content: center;
        background: lightgreen;
        margin: 0;
    }
    
    }

    Best regards,
    Vinay

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