Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #637253

    Hi guys

    The footer menu (About / Terms / Contact), is not displaying on mobile phones. I can’t seem to find a setting in Admin to control this? Could you please check?

    Thanks

    #637303

    Hey pantoni,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    
    @media only screen and (max-width: 767px) {
    .responsive #socket .sub_menu_socket {
        display:block!important;    
    }}
    

    Best regards,
    Vinay

    #637845

    Thanks Andy

    Please see screengrab below. The Footer menu is now displaying OK on mobile but 2 issues:

    1. Need it to display directly under Copyright
    2. Need it to left align with Copyright

    #638716

    Hi,

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 480px) {
    li#menu-item-6381 {
        padding-left: 0!important;
    }
    
    #socket .sub_menu_socket li {
        padding: 0 5px;
    }}

    Best regards,
    Yigit

    #639037

    Hi Yigit

    I’ve added that, cleared cache but both issues still persist.

    Thanks

    #639300

    Hi,

    Can you please try changing the code to following one

    @media only screen and (max-width: 767px) {
    li#menu-item-6381 {
        padding-left: 0!important;
    }
    
    #socket .sub_menu_socket li {
        padding: 0 5px;
    }}

    Best regards,
    Yigit

    #639608

    Hi Yigit

    Still no luck unfortunately – here’s the total code I’ve got for the footer….

    @media only screen and (max-width: 767px) {
    .responsive #socket .sub_menu_socket {
    display:block!important;
    }}

    @media only screen and (max-width: 767px) {
    li#menu-item-6381 {
    padding-left: 0!important;
    }

    #socket .sub_menu_socket li {
    padding: 0 5px;

    #640147

    Hi,

    Please add this code inside the css media query:

    #socket .menu {
        position: absolute;
        left: -8px;
        top: 40px;
    }

    Best regards,
    Ismael

    #640151

    Thanks Ismael

    That worked – just one small issue on desktop :)

    The footer menu ABOUT / TERMS / CONTACT is left aligned too far to the left beyond the line above and below.

    Please see screengrab below..

    Thanks

    #640212

    Hi,

    Please replace the previous code with the one below:

    
    @media only screen and (min-width: 767px) {
    #socket .menu {
        position: absolute;
        left: 34px;
        top: 40px;
    }
    }
    

    Best regards,
    Vinay

    #640653

    Hi Vinay

    Have done that and it fixed desktop, but has reverted the mobile view back to initial issues. And when slowly reducing browser width down in size, it’s not a consistent responsive reformatting. Just to confirm – here’s the total custom css for this:

    @media only screen and (max-width: 767px) {
    .responsive #socket .sub_menu_socket {
    display:block!important;
    }}

    @media only screen and (max-width: 767px) {
    li#menu-item-6381 {
    padding-left: 0!important;
    }

    #socket .sub_menu_socket li {
    padding: 0 5px;
    }}

    @media only screen and (min-width: 767px) {
    #socket .menu {
    position: absolute;
    left: 34px;
    top: 40px;
    }
    }

    #641142

    hi Vinay

    Has been a bit too quirky getting this sorted so we’ve removed the footer menu for now.

    #641172

    Hi,

    Has been a bit too quirky getting this sorted so we’ve removed the footer menu for now.

    https://www.dropbox.com/s/szg6dr6mtm560na/footer-02.jpg?dl=0

    It looks like that because you didn’t place the suggested code inside the css media query as instructed.

    #socket .menu {
        position: absolute;
        left: -8px;
        top: 40px;
    }

    Best regards,
    Ismael

    #641452

    Hi Ismael

    As mentioned above – that code did not work, and subsequent changes. So we abandoned the footer menu

    Thanks.

    #641854

    Hi,

    Ok, please let us know if you should need any more help on the topic.

    Regards,
    Rikard

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