• Resolved mhancock52

    (@mhancock52)


    wantokwifi.com is working fine now on computer browsers, but the menu button hangs on both ios and android. Any thoughts? Thanks very much.

    • This topic was modified 7 years, 10 months ago by mhancock52.
Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi there,

    Have theme files been edited to remove the footer?

    If they have, it will cause errors.

    It removes wp_footer() from the theme, which prevents javascript for the menu from being loaded. It also removes some of the closing tags from the site’s html.

    If core theme files have been edited, please reinstall the theme.

    If you then need to modify the footer section, please let me know, and I can help you with that.

    Thanks ??

    Thread Starter mhancock52

    (@mhancock52)

    Guilty!

    I’ll make those corrections, then revert in a new string regarding how to modify the footer section.

    Thanks Gary.

    Thread Starter mhancock52

    (@mhancock52)

    Theme re-installed, credits in the footer are now back, but:

    On the iPhone rendering, and when the home page is loaded: (1) the menu button is dead, (2) the menu options show up as an html list (in purple) on top of the featured image and its text (but the links work). The over-writing occurs on all pages. Any thoughts for fixing that?

    Also, I would like to edit the footer (giving credit, but in smaller type, off to the right margin).

    If of any value, here is the current CSS:

    .site-header{
    height: 120px;
    }
    .main-title{
    font-size: 14px;
    }
    .page-template-panel-page .has-post-thumbnail .entry-header {
    display: none;
    }

    /*Remove Top Margin and Padding of Second Panel*/
    .site-main .hentry:nth-of-type(2) {
    margin-top: 0px;
    padding-top: 0px;
    }

    /*Hide Page Title of Second Panel*/
    .site-main .hentry:nth-of-type(2) .entry-title {
    display: none;
    }

    Thanks for suffering through this with me!

    Thanks for suffering through this with me!

    I’m not suffering, I’m here to help ??

    For the menu, please remove this css rule:

    .site-header {
        height: 120px;
    }

    I would like to edit the footer (giving credit, but in smaller type, off to the right margin).

    Do you want to the content of the footer text so that it says something else, or just change its position and size?

    Thread Starter mhancock52

    (@mhancock52)

    That sorted out the menu on the smartphones. Thanks.

    For the footer, I would like to put “Thanks to WordPress/ Shoreditch by Automattic” but in smaller type, right aligned.

    That sorted out the menu on the smartphones. Thanks.

    You’re welcome ??

    For the footer, please try adding the css below:

    /* Hide the original footer credit */
    
    .site-info {
        visibility: hidden;
    }
    
    /* Add the new footer credit */
    
    .site-info:before {
        content: "Thanks to WordPress/ Shoreditch by Automattic";
        visibility: visible;
        font-size: 14px;
        position: absolute;
        right: 0;
    }
    
    .site-footer-wrapper {
        position: relative;
    }
    Thread Starter mhancock52

    (@mhancock52)

    Just like magic … simple after you know the trick!

    Thanks

    You’re welcome, have a great weekend ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Menu button not working on mobiles’ is closed to new replies.