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

    I need help with a couple of formatting issues:

    1. I need help centering my logo, phone number, and social media icons on my iPad in portrait mode. I want it to center the same way it does when I pull it up on my iPhone.

    2. The mobile menu isn’t showing up on the iPad in portrait mode either.

    3. Can you help me adjust the mobile menu so it lines up with the x to close the menu on all devices

    #276304

    Hi kevinjsutton!

    1&3 – Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .mobile_slide_out .logo {
    left: 40%;
    }
    .av_phone_active_left .phone-info {
    margin-left: 40%;
    }}
    #advanced_menu_toggle {
    right: -35%;
    top: -40%;
    }

    You may need to adjust the left value to center logo and phone number perfectly.
    2- I tried resizing browser window but mobile menu always shows up on my end. Have you fixed it already?

    Regards,
    Yigit

    #276330
    This reply has been marked as private.
    #276350

    Hi!

    Thank you for the update.

    Please avoid creating duplicated posts. If I am not mistaken, this issue is the same with the thread you have here: https://kriesi.at/support/topic/ipad-formatting-issue/

    Anyway, regarding the mobile menu, please go to Enfold > Mobile Menu > Header Mobile Menu activation. Choose the second option. After that, pease add this on Quick CSS or custom.css to center align the logo on iPad portrait view:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .mobile_slide_out .logo {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    }
    
    #advanced_menu_toggle {
    right: 0;
    top: 40%;
    }
    }

    Remove this line on our first suggestion:

    .responsive .mobile_slide_out .logo {
    left: 40%;
    }

    Cheers!
    Ismael

    #276357
    This reply has been marked as private.
    #276407

    Hi!

    Please add following code to Quick CSS as well and adjust

    @media only screen and (max-width: 480px) {
    .responsive #header .social_bookmarks { width: 90%; }
    #advanced_menu_toggle { top: 1%; }}

    Cheers!
    Yigit

    #276594

    Resolved!

    #276643

    Hey!

    Great! Let us know if you have any other questions or issues

    Best regards,
    Yigit

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Center Logo on iPad’ is closed to new replies.