Viewing 14 replies - 1 through 14 (of 14 total)
  • I’m having a problem with my header not showing up mobile as well. I’ve tried all kinds of things and nothing has worked. Have you found a solution yet?

    Thread Starter alexplastik

    (@alexplastik)

    Hi,

    Sadly no, not yet, all I’ve found on the subject seems too random to fix the issue.

    But I still have one of my three websites that works, really don’t know why.
    The only difference is that wordpress is in french for the working one… sick right? 🙂

    And… more seriously I have somme custom CSS features that are not set yet into the working one but only “div” styles.

    If anyone could help that would be great!

    Cheers, sorry i can’t help you

    I have this same issue. Surely we can find a solution!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    @crystalk84, please share the solution if you have it.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    @alexplastik, there is a CSS style on this website that colours the navigation blue.

    It looks like a CSS customisation that has been added that sets this navigation blue.

    That blue colour has not been applied within a media query, so it is visible to the mobile menu when it sounds like you just want it for the desktop.

    @crystalk84, it is unlikely you are experiencing the same issue. Please create your own thread to discuss your issue.

    Thread Starter alexplastik

    (@alexplastik)

    Hi Andrew, and thank you for your message,

    I have indeed edited the header.php but after having the issue (to add the facebook fanbox xhtml condition).
    So I don’t think it comes from a thing I’ve done by my self, manually at least.
    FYI, the issue is the same on the Audihome website, whose Header.php hasn’t been edited at all (once again, manually at least).

    But, I’ll use your advice to study more carefully the problem, I’ll post here if I find a solution.

    Thanks again.

    Alex

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you can’t remember styling the colours of the navigation bar then consider deactivating plugins to explore whether any could be responsible. The default Pinboard theme has a black navigation bar.

    Thread Starter alexplastik

    (@alexplastik)

    Oh! It seems you found the issue.

    I had changed the color in the Theme Options, Design, Menu background Color.

    I cleared it and indeed the color goes back to black and the header pictures stays now in mobile theme when you develop the menu.

    So it seem to be a bug of the theme, it’s not normal to be able to change the color and to loose the background image in mobile theme if you do this…

    Any thought? (thanks anyway)

    For now, i’ll keep my blue color and deal with this problem but if you or anyone has a clue on how to avoid this bug, I am in! (maybe editing the theme’s core?)

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Does the theme come with a “Custom CSS” (or similarly named) part of the dashboard?

    Thread Starter alexplastik

    (@alexplastik)

    It does yes

    Thread Starter alexplastik

    (@alexplastik)

    I tried adding :

    #access {
    background:#003b47
    }

    Works, but bug comes back 🙂
    Anyway you helped a lot already, thank you very much for your time, I rather prefer know where does the problem come from!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Use this CSS instead:

    @media screen and (min-width: 760px) {
     #access {
      background: #003b47;
     }
    }

    Thread Starter alexplastik

    (@alexplastik)

    A-MAZ-ING 🙂 Seems obvious now but I would have never find this alone!

    MERCI BEAUCOUP! Great help!!

    (anything i can do? rate something, use your stuff? send free music? lol use contact form to tell if, i note post as resolved)

    Mobile menu is hugly by the way!! It comes under the begining of the page body :p But anyway… 😀

    Thread Starter alexplastik

    (@alexplastik)

    SOLUTION WAS :

    First clear your background menu color in theme, then in layout, custom css add :

    @media screen and (min-width: 760px) {
    #access {
    background: #123456;
    }
    }

    Where : 123456 is the color you want to get for your theme!

    Thanks to Andrew Nevins!

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Menus and mobile theme (header desappears when on)’ is closed to new replies.