Modification

Post Reply
tuxmika
Ssr. Bludit
Posts: 10
Joined: Tue Jul 05, 2016 5:47 pm

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" ..
Attachments
Sans titre 1.jpg
Sans titre 1.jpg (31.17 KiB) Viewed 4225 times
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

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.
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
tuxmika
Ssr. Bludit
Posts: 10
Joined: Tue Jul 05, 2016 5:47 pm

Hi,

So i can't remove the line "general" in the menu to keep only the 3 lines "presentations, experiences and training" .. :(
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

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>
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
Post Reply