Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1160918

    Hi,

    my website is live but the mobile version has some problems:
    1) SOCKET MOBILE VERSION: I want to have all elements in the middle of the page in this order:
    – social links (bigger: I can’t even see them in the mobile version)
    – links to terms and conditions and privacy
    – Copyright

    2) in the homepage some icons and buttons are not well centered for examples buttons and stars icons.

    3) I need to make the pictures of me in the homepage smaller in the mobile version. Is it possible?

    Can you help me please to fix all of these?

    #1161181

    Hi can someone give me a feedback please about this?

    #1161622

    Hi,
    can someone give me a feedback please?
    Much appreciated
    Francesca

    #1161743

    Hi sparkylab,

    We apologize for the delayed response.
    1. Please add this css code in Quick CSS or your custom css file.

    @media only screen and (max-width:767px) {
        #socket .container {
            display: flex;
            flex-direction: column;
            text-align: center;
        }
    
        #socket .container .social_bookmarks {
            order: 1;
        }
    
        #socket .container .sub_menu_socket {
            order: 2;
        }
    
        #socket .container .sub_menu_socket .menu, 
        #socket .social_bookmarks {
            margin: 6px 0 0;
        }
    
        #socket .container .sub_menu_socket .menu li, 
        #socket .social_bookmarks li {
            float: none;
            display: inline-block;
        }
    
        #socket .social_bookmarks li a {
            font-size: 18px;
        }
    
        #socket .container .copyright {
            order: 3;
        }
    }

    2. The only button I could see not centered is the button below the form, can you give us a screenshot on how it looks on your end?

    3. It’s possible, if it’s the image above “So, who am I?”, then you can use this css code:

    .home #av_section_3 .avia_image {
        max-height: 260px;
        width: auto;
    }

    Hope this helps.

    Best regards,
    Nikko

    #1164007

    Hi Nikko,
    thank you.
    I didn’t add the code yet as I want to know if it’s possible to make the social icons bigger and with the elements in the socket like the following order:
    1) social icons
    2) Privacy policy – terms and conditions
    3) copyright

    Can you give me please the code for the center position plus this requests?
    Thank you!

    #1164513

    Hi sparkylab,

    Is this the order for the mobile version or for all screens?

    Best regards,
    Victoria

    #1164546

    Hi Victoria,
    this is the order only for the mobile version.
    For the desktop is fine thanks for asking
    Francesca

    #1164717

    Hi Francesca,

    Yes, the social icons will be made bigger and in the order you mentioned plus centered. This is what it should look like if you put the code I gave: https://imgur.com/MPckiN4
    It will only affect mobile versions.

    Best regards,
    Nikko

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