Page 1 of 1

Modification

Posted: Fri Feb 02, 2018 12:24 pm
by tuxmika
Hello

I would like to go up the menu module up and down the links.

How can also, remove the line "general" in the menu to keep only the 3 lines "presentations, experiences and training" ..

Re: Modification

Posted: Sat Feb 03, 2018 2:00 pm
by Edi
tuxmika wrote: Fri Feb 02, 2018 12:24 pm I would like to go up the menu module up and down the links.
How this can be made is explained here:

viewtopic.php?p=4666#p4666
How can also, remove the line "general" in the menu to keep only the 3 lines "presentations, experiences and training" ..
We have to add an additional plugin for a menu showing the published pages.

Re: Modification

Posted: Mon Feb 05, 2018 12:33 pm
by tuxmika
Hi,

So i can't remove the line "general" in the menu to keep only the 3 lines "presentations, experiences and training" .. :(

Re: Modification

Posted: Mon Feb 05, 2018 1:31 pm
by Edi
1) You are using the plugin Menu. This plugin shows the content assigned to categories. Why not use the plugin Navigation instead?

2) You can hide the categories with CSS:

Code: Select all

.category-name {
   display: none;
}
For this you can for example use the plugin HTML Code and enter the following in the field "Theme Head":

Code: Select all

<style>
.category-name {
   display: none;
}
</style>