CSSMenu Horiz 1 col + News
CSSMenu Horiz 1 col + News
How do I add a column for news to this template?
Thanks,
ad
Thanks,
ad
Re: CSSMenu Horiz 1 col + News
{title}
{content}
{cms_selflink anchorlink='main' dir='anchor' text='^ Top'}
{cms_selflink dir="previous"}
{cms_selflink dir="next"}
News
{cms_module module='news' number='5' category='General'}
then add CSS to style... which you will find attached to... Bulletmenu Vert 1col+News
Re: CSSMenu Horiz 1 col + News
Hello, I also tried this and now have following problem:
The menu works fine, but when I expand an entry and scroll over an sub-entry that is as far down as the site's content, the menu exits.
Note, it works fine normally, but as soon as I have a menu that expands so far down that it's "over" the site's content (i.e. the "region" of the content, there does not have to actually be any text or so), the menu vanishes.
The menu appears to be under the text where the two meet, how can I fix this (i am using CMSMS 0.13)?
Can you help me?
The menu works fine, but when I expand an entry and scroll over an sub-entry that is as far down as the site's content, the menu exits.
Note, it works fine normally, but as soon as I have a menu that expands so far down that it's "over" the site's content (i.e. the "region" of the content, there does not have to actually be any text or so), the menu vanishes.
The menu appears to be under the text where the two meet, how can I fix this (i am using CMSMS 0.13)?
Can you help me?
Last edited by fuzzcore on Thu Jun 29, 2006 9:04 am, edited 1 time in total.
Re: CSSMenu Horiz 1 col + News
look at the theme download page for template you need :..
Re: CSSMenu Horiz 1 col + News
Sorry Marc, this is probably me being kinda dumb, but i don't get it.
What do I need? Currectly I'm still using the standard theme (due to a "DTD Version mismatch"-error when importing new themes, which I don't get solved either), what exactly do I need then? Sorry again, new to this whole world of CMS(MS)!
What do I need? Currectly I'm still using the standard theme (due to a "DTD Version mismatch"-error when importing new themes, which I don't get solved either), what exactly do I need then? Sorry again, new to this whole world of CMS(MS)!
Re: CSSMenu Horiz 1 col + News
try to find a CSS setting in the menu that says overflow:hidden and delete it or just 'comment' it out...
/* this is commented out */ anything between /* */ is not read by browsers...
/* this is commented out */ anything between /* */ is not read by browsers...
Re: CSSMenu Horiz 1 col + News
do you have a link :..
Re: CSSMenu Horiz 1 col + News
Hello,
I have dumb question too...I have horizontal drop-down menu with 4 levels. If i move the mouse to over the 2th level menupoint, the css expand the 3th (it is ok, normaly) but the 4th menupoint too...Why?
Thanx a lot...
Tamas
I have dumb question too...I have horizontal drop-down menu with 4 levels. If i move the mouse to over the 2th level menupoint, the css expand the 3th (it is ok, normaly) but the 4th menupoint too...Why?
Thanx a lot...
Tamas
Last edited by xshark on Fri Jun 30, 2006 12:34 pm, edited 1 time in total.
Re: CSSMenu Horiz 1 col + News
the only dumb ? is the 1 you don't ask :..
the CSS menu is set for 3 levels, to add more levels find this and add the things in blue :..
/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */
#primary-nav ul, #primary-nav li:hover ul, #primary-nav li:hover ul ul, #primary-nav li:hover ul ul ul,
#primary-nav li.menuparenth ul, #primary-nav li.menuparenth ul ul, #primary-nav li.menuparenth ul ul ul {
display: none;
}
#primary-nav li:hover ul, #primary-nav ul li:hover ul, #primary-nav ul ul li:hover ul, #primary-nav ul ul ul li:hover ul,
#primary-nav li.menuparenth ul, #primary-nav ul li.menuparenth ul, #primary-nav ul ul li.menuparenth ul, #primary-nav ul ul ul li.menuparenth ul {
display: block;
}
the menu has a primary list and 2 under it, the ul ul, so for 4 levels it's ul ul ul :..
the CSS menu is set for 3 levels, to add more levels find this and add the things in blue :..
/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */
#primary-nav ul, #primary-nav li:hover ul, #primary-nav li:hover ul ul, #primary-nav li:hover ul ul ul,
#primary-nav li.menuparenth ul, #primary-nav li.menuparenth ul ul, #primary-nav li.menuparenth ul ul ul {
display: none;
}
#primary-nav li:hover ul, #primary-nav ul li:hover ul, #primary-nav ul ul li:hover ul, #primary-nav ul ul ul li:hover ul,
#primary-nav li.menuparenth ul, #primary-nav ul li.menuparenth ul, #primary-nav ul ul li.menuparenth ul, #primary-nav ul ul ul li.menuparenth ul {
display: block;
}
the menu has a primary list and 2 under it, the ul ul, so for 4 levels it's ul ul ul :..
Re: CSSMenu Horiz 1 col + News
fuzzcore...
div#content {
position: relative; this is it... this is not in the default template, added some how? i took it out and it let your menu float on top of your content, with out effecting anything else :..
width: 100%;
margin: 1.5em 0 2em 0;
padding: 0;
text-align: left;
}
div#content {
position: relative; this is it... this is not in the default template, added some how? i took it out and it let your menu float on top of your content, with out effecting anything else :..
width: 100%;
margin: 1.5em 0 2em 0;
padding: 0;
text-align: left;
}
Re: CSSMenu Horiz 1 col + News
That's it, thank you so much Mark! Looks like it was my fault when copying the template or so, so I appreciate your fix all the more. Thanks!
Rock on...
-fc
Rock on...
-fc