• Hey all. I was just curious how do i make a separate mobile header. As you can see on my site https://www.dirtyculture.com.au the mobile header matches my normal header. All i want in my mobile header is text. Just to clean it up. I had a friend do my site so not sure if there is anything added to make this happen.

    Thanks

Viewing 11 replies - 1 through 11 (of 11 total)
  • Hello,

    Unfortunately, there isn’t an option within the constraints of the free theme to have separate mobile and desktop site headers. This is possible in the premium version though. Sorry.

    -Kevin

    Thread Starter Mrgem79

    (@mrgem79)

    ok cool

    i may try some css to change it when it goes to mobile view, or just change my logo, trying to clean up the site. am loving this learning process.

    You can certainly change how certain things are styled in mobile and desktop view! I was just referring to the ability to assign an entirely different header to mobile than desktop.

    If you need any assistance with the media queries or any other CSS, let me know and I’ll gladly do my best to help.

    -Kevin

    Thread Starter Mrgem79

    (@mrgem79)

    hey kevin this is my media setup, your help would be great

    @media only screen and (max-width: 990px) {
    #logo, .menu-search, #nav-main, .header-spacer {
    display:none !important;
    }
    }

    @media only screen and (min-width: 990px) {
    .mobile-menu-search {
    display:none !important;
    }
    }

    @media only screen and (max-width: 100px) {
    #nav-main .sf-menu .sf-dropdown-menu {
    display:none;
    }
    }

    @media (max-width: 979px) {
    #topbar {display: none;}
    }

    @media (min-width: 992px) {
    .footercol1 .widget-first .widget_kadence_social {
    display: none;
    }
    }

    Hey,
    Can you tell me what you are wanting to change that your wanting help with?

    Thanks,

    Ben
    Kadence Themes

    Thread Starter Mrgem79

    (@mrgem79)

    in the mobile view instead of my logo header i just want words nothing fancy just plain and simple

    It looks like you’ve changed some of the theme code for your header. That makes it difficult to tell you what to change, since that image isn’t actually your logo.

    This CSS will hide the image, as well as place some text in the header, but I’m a bit confused on why it’s being added in the first place.

    .kad-menu-name:before {
        content: "djakaskljf";
    }
    
    .kad-menu-name img {
        display: none;
    }

    All custom CSS should be placed in Theme Options> Advanced Settings.

    Thread Starter Mrgem79

    (@mrgem79)

    thats weird as im adding the logo thru the main part not changing the header code.

    i will try it and see what happens

    Thread Starter Mrgem79

    (@mrgem79)

    worked perfectly awesome

    is there anyway of changing font?

    Yeah you can just add the font properties to the above CSS like this:

    .kad-menu-name:before {
        content: "djakaskljf";
        font-family: serif;
    }

    -Kevin

    Thread Starter Mrgem79

    (@mrgem79)

    Awesome kevin thank you soo much for your help. Absolute champion

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘how to have separate mobile header’ is closed to new replies.