[SOLVED] Remove menus for single page website?

Ask for help or provide support to other members.
Post Reply
PBUTTERWORTH
Posts: 2
Joined: Thu Jun 16, 2022 2:11 pm

[SOLVED] Remove menus for single page website?

Post by PBUTTERWORTH »

Hi,

really pleased i found this CMS. I needed to create a simple single page website without a database, and this works a treat.

Is it possible to remove the page name (Home) as its just one page?

Thanks
Paul
PBUTTERWORTH
Posts: 2
Joined: Thu Jun 16, 2022 2:11 pm

Re: Remove menus for single page website?

Post by PBUTTERWORTH »

In case the site is of interest, its here: https://www.bayhamabbey.com/home
OneManLaptop
Posts: 68
Joined: Tue Mar 16, 2021 3:29 pm

Re: Remove menus for single page website?

Post by OneManLaptop »

Yeah, that's no problem. If you just want to remove the link to home, use this:

Code: Select all

.navbar-nav {
	display: none!important;
}
If you want to remove the entire header, use this:

Code: Select all


.navbar {
	display: none!important;
}

Add either code to the theme's CSS file, which you can find in the wondercms folder:

wondercms -> themes -> parallax -> css -> style.css

That should magic it away. :D

Glad you're enjoying the CMS. If you have any more questions let us know and feel free to share your website in our "show off" section:

viewforum.php?f=44
Post Reply