Hello,
I have a problem with the boxed layout. It works on a homepage where the page is set to the default layout. However, when I add a new page and then set the layout to no Blank, no header no footer the view goes from boxed layout to stretched????
Thanks
Andrew
Hi!
Blank page template does not support boxed layout. It only works fullwidth. However @josue posted a workaround here – https://kriesi.at/support/topic/boxed-layout-not-working-2/#post-217244
Regards,
Yigit
Hello and thanks for the reply.
Ok, didn’t realise that.
I don’t see a workaround in the link you sent, maybe because the reply is private.
So, is there any way to only display the actual menu on the homepage via custom css and not on other pages?
Thanks
Andrew
Hi Andrew!
Try:
.home #avia-menu li{
display: none;
}
.home #avia-menu li.current-menu-item, .home #avia-menu li.current-menu-ancestor {
display: block !important;
}
Best regards,
Josue
Hello Josue,
Thanks for the information but it didn’t work. To clarify, I just want to include the menu item (just the homepage) on the homepage and not other pages should have a menu.
Thanks
Andrew
Actually after checking the logo is there too which I don’t want on sub pages. So, basically I don’t want a header including the logo and menu (in all pages except home) but as advised in a previous post I can’t do this because it screws up the boxed layout if I select no header.
Thanks
Andrew
Found a solution:
.home .main_menu { display: block; }
.home .logo { display: block; }
.main_menu { display: none; }
.logo { display:none; }
Hides the logo and menu on all pages except home.
Thanks
Andrew