Menu not being displayed anymore...Weird - Help...[SOLVED]
Menu not being displayed anymore...Weird - Help...[SOLVED]
So I'm working on creating 2 menu's. Horizontal and Vertical...with DIFFERENT links.
Well after searching I figured out how to make the vertical menu come alive. I created a new "page" with "Show In Menu" NOT selected. This new page has several child pages that will be displayed in my new vertical menu.
Then I use the following code to display this new vertical menu where I want...
{cms_module module='menumanager' start_element="10"}
When I got everything together it worked great. Looks awesome. I was VERY happy.
Well now all of a sudden it's not showing up. No errors or anything just not being displayed...HOWEVER, when I disable CSS using firebug it's there...it's got an extra bulleted item that's blank but it's there...also, when I "View Page Source" it's there. It doesn't appear to be a font color issue either because I changed background colors and "select all" on the page and it's still not showing.
I was fiddling with templates and CSS but not sure what I might have done...Just seems like it disappeared.
My brain is hurting right now and I can't figure it out...I know it's something stupid too...
Any insight?
Thanks,
Mike
Well after searching I figured out how to make the vertical menu come alive. I created a new "page" with "Show In Menu" NOT selected. This new page has several child pages that will be displayed in my new vertical menu.
Then I use the following code to display this new vertical menu where I want...
{cms_module module='menumanager' start_element="10"}
When I got everything together it worked great. Looks awesome. I was VERY happy.
Well now all of a sudden it's not showing up. No errors or anything just not being displayed...HOWEVER, when I disable CSS using firebug it's there...it's got an extra bulleted item that's blank but it's there...also, when I "View Page Source" it's there. It doesn't appear to be a font color issue either because I changed background colors and "select all" on the page and it's still not showing.
I was fiddling with templates and CSS but not sure what I might have done...Just seems like it disappeared.
My brain is hurting right now and I can't figure it out...I know it's something stupid too...
Any insight?
Thanks,
Mike
Last edited by n20capri on Wed Oct 27, 2010 12:57 pm, edited 1 time in total.
Re: Menu not being displayed anymore...Weird - Help...
With out a link, not much help...
Re: Menu not being displayed anymore...Weird - Help...
First off, line 43 - 45...
You are using a menu template that has an ID on the UL which is throwing an error...
Most likely it is a css thing where you have the a link using white...
You are using a menu template that has an ID on the UL which is throwing an error...
Most likely it is a css thing where you have the a link using white...
Re: Menu not being displayed anymore...Weird - Help...
Yeah I've explored that avenue...that error is for the top menu which I know isn't right yet. I've removed the code for the top menu and still no side menu.
cmsms.baldguydesigns.net
Not sure it's a color issue as I've changed colors and still no menu...
Like I said it WAS showing then all of a sudden gone...
cmsms.baldguydesigns.net
Not sure it's a color issue as I've changed colors and still no menu...
Like I said it WAS showing then all of a sudden gone...
Dr.CSS wrote: First off, line 43 - 45...
You are using a menu template that has an ID on the UL which is throwing an error...
Most likely it is a css thing where you have the a link using white...
Re: Menu not being displayed anymore...Weird - Help...
Also, the current template has fixed size vertical link areas (Main Menu and Resources) but the template I WAS using built that area as more links are added and when it's enabled the menu area is real small - like nothing is there...so I know it's not a color issue.
Thanks
Thanks
Re: Menu not being displayed anymore...Weird - Help...
For the side menu I would use just {menu} tag as it seems it's getting an UL below the regular primary-nav UL and the css says #primary-nav ul display:none, how are you calling it menu tag wise?...
Put the other one in so I see what you mean...
Put the other one in so I see what you mean...
Re: Menu not being displayed anymore...Weird - Help...
Code: Select all
{cms_module module='menumanager' start_element="10"}
Other template (NCleanBlue) has been swapped in...side menu being called the same way. You can see how small they are...so I know nothing is there...although it IS there...lol
Code: Select all
{cms_module module='menumanager' start_element="10"}
Code: Select all
{cms_module module='menumanager' start_element="11"}
Thanks for the help!
I also made sure 10 and 11 are correct items i want to start with...
Re: Menu not being displayed anymore...Weird - Help...
You must have the cssmenu_ulshadow.tpl set as default in menu manager which means when you call a {menu} that is the one used, this is what leads me to think this...
You have in the top menu and the side menu says this...
Portfolio
And as I said before because the CSS has ul#primary-nav ul {display:none} you wont see the side menu...
You may want to use the childrenof= parameter as the one you are using is giving you the extra UL from the page above it...
What does your page structure look like in content > pages?...
You have in the top menu and the side menu says this...
Portfolio
And as I said before because the CSS has ul#primary-nav ul {display:none} you wont see the side menu...
You may want to use the childrenof= parameter as the one you are using is giving you the extra UL from the page above it...
What does your page structure look like in content > pages?...
Re: Menu not being displayed anymore...Weird - Help...
Weird thing is I didn't change anything (that I know of) because it was working nicely...lol
Trying to figure out what I did with the templates or the CSS to cause this...
Page Structure...

Trying to figure out what I did with the templates or the CSS to cause this...
Page Structure...
Re: Menu not being displayed anymore...Weird - Help...
Most likely you have the "main menu" page set to not show in the menu, which causes the menu UL LI to exclude it and start with a UL, so it would be {menu childrenof='main-menu} hopefully your menu manager says simple_navigation.tpl (read only) {menu} with a green check under default...
Re: Menu not being displayed anymore...Weird - Help...
Well simple_navigation.tpl (read only) {menu} was NOT the default menu and that was the problem. It's fine now. I guess I was fiddling and I changed the default. I knew I did something in there just couldn't figure out what it was.
Much appreciated. I knew it was going to be something silly.
Loading good just have to format the CSS to fill the space.
cmsms.baldguydesigns.net
Now I just have to get rid of the bullets in the horizontal menu and get the rest of the CSS in line...
Thanks again,
Mike
Much appreciated. I knew it was going to be something silly.
Loading good just have to format the CSS to fill the space.
cmsms.baldguydesigns.net
Now I just have to get rid of the bullets in the horizontal menu and get the rest of the CSS in line...
Thanks again,
Mike
Last edited by n20capri on Wed Oct 27, 2010 1:31 am, edited 1 time in total.