• Hello, I couldn’t find info about this.
    How can I use the header only in the front page? Is any option available to “hide” the header in the rest of the web and show it only in the front page? Thanks.

    btw, theme is COLORMAG

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey there nadie0212,

    How are you doing today?

    Not sure if you’re referring to header image or whole header area? In both cases I’m not sure if there is an option for that in the theme that you’re using but this could definitely be done with some custom CSS.

    Please let me know ??

    Cheers,
    Bojan

    I too seek assistance with this question. I’m willing to buy the premium version for this function if I must, but it’s not offered with that either.

    I’m sure custom CSS would take care of it, Bojan, thing is the CSS in the “customize” settings would change the whole theme and not an individual page. etc.

    Thanks!

    Thread Starter nadie0212

    (@nadie0212)

    We hired an expert to do our page, I will ask him and I will write his answer here. cheers

    Hey guys,

    @nadie0212 fair enough ??

    @siranthonyp

    Bojan, thing is the CSS in the “customize” settings would change the whole theme and not an individual page. etc.

    That’s actually not true, every page has its own unique class in body element which you can add in selector to target that specific page. Generally home page has home class so what you can do based on what you’re actually trying to remove and considering that part is being displayed on all pages is the following.

    Lets say the class you’re looking to remove is called header and you want to keep it only on your home page you’d add this:

    .header {
    display: none;
    }
    
    .home .header {
    display: block;
    }

    First part of code in this example will remove “header” everywhere on your site and the second part would override the code above and display the same element only on your home page.

    Hope this makes sense ??

    Cheers,
    Bojan

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Header in front page only’ is closed to new replies.