Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #359178

    I have added a new element to the header and am having a hard time styling the mobile to make the menu and shopping cart not overlap. I have created a diagram of what I would hope to do. I have included the link to the diagram in the private content area. Can you help with this?

    • This topic was modified 9 years, 12 months ago by thecszone.
    #359350

    Hey thecszone!

    Please add following code to Quick CSS

    @media only screen and (max-width: 480px) {
    .responsive #top .cart_dropdown { top: 35%; right: 45%; }
    #advanced_menu_toggle, #advanced_menu_hide { right: 36%; top: 27%; }}

    Best regards,
    Yigit

    #359654
    This reply has been marked as private.
    #360018

    Hey!

    It looks fine for me on iPhone 3G (320px width), as seen here:

    Which mobile device are you using?

    Best regards,
    Andy

    #360085
    This reply has been marked as private.
    #360380

    I replied on this a few days ago but never heard back. Is there anything else you need to help me solve this?

    #360599

    Hey!

    Some of css modifications are breaking the mobile layout of the site. Please look for these codes then remove them:

    #header_main .phone-info {
    width: 274px;
    float: right;
    margin-right: 0;
    padding: 0px;
    }
    
    #header_meta {
    height: 20px;
    width: 308px;
    float: right;
    margin-right: 23px;
    margin-top: 3px;
    padding-top: 1px;
    }

    Replace it with:

    @media only screen and (min-width: 768px) {
    #header_main .phone-info {
    width: 274px;
    float: right;
    margin-right: 0;
    padding: 0px;
    }
    
    #header_meta {
    height: 20px;
    width: 308px;
    float: right;
    margin-right: 23px;
    margin-top: 3px;
    padding-top: 1px;
    }
    }

    Best regards,
    Ismael

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