Shape 5

General Category => Joomla Talk => : imagine77 January 30, 2012, 08:33:36 PM



: Hide "HOME" Menu Item
: imagine77 January 30, 2012, 08:33:36 PM
I am using S5 FLEX MENU and I want to hide the HOME button from the TOP Navigation Bar.

Is there a way to apply a CSS style ONLY to the HOME Menu Item...

as in this example:
.item1 {
display:none;
}

??


: Re: Hide "HOME" Menu Item
: mikek January 31, 2012, 07:39:03 AM
Hello,

If you want to hide it, you would just unpublish it in the menu manager and assign another menu item as the default. There is not a way to hide it with css because they all use the same class names.


: Re: Hide "HOME" Menu Item
: aksenovpk March 31, 2012, 04:55:04 AM
I want to hide some Menu items for registered users.
:
<?php $user =& JFactory::getUser();
if( !
$user->guest ) : ?>

<style type="text/css">
#item-123 { display:none !important; }
</style>
<?php endif; ?>

How I can change S5 flex menu code to make id for every menu items?


: Re: Hide "HOME" Menu Item
: mikek March 31, 2012, 07:02:04 AM
Hello,

You can do that right through the menu manager. Just set those links to registered only.


: Re: Hide "HOME" Menu Item
: renitab01 January 23, 2013, 07:34:23 AM
i need to style some of the items in my menu but they all have the same class. How can I apply CSS to just one menu item?


: Re: Hide "HOME" Menu Item
: mikek January 23, 2013, 08:47:28 AM
Hello,

That's not possible, because each menu item has the same class names.


: Re: Hide "HOME" Menu Item
: renitab01 January 23, 2013, 09:11:41 AM
do you plan on adding the ability to have id's associated with each item? this is something i use all the time to make menus more unique and it seems like it would be a very valuable addition to the menu. As is there are a lot of limitations to the design if it is not added.


: Re: Hide "HOME" Menu Item
: mikek January 23, 2013, 11:27:45 AM
Hello,

No, we do not have any plans of adding this.