Vertical menu not showing correctly
Vertical menu not showing correctly
The vertical Ellnav menu seems to have a problem (at least in IE). When an item is activated, the item shrinks its width to the width of the text, and the next item flows up into the space freed up to the right of the active item.
Although this is mainly a "cosmetic" problem, I thought I'd mention it, since I haven't been able to find any info about it in the forum.
I have noticed this problem in 0.12 as well as 0.13 betas.
best regards,
Finn
Although this is mainly a "cosmetic" problem, I thought I'd mention it, since I haven't been able to find any info about it in the forum.
I have noticed this problem in 0.12 as well as 0.13 betas.
best regards,
Finn
Re: Vertical menu not showing correctly
Sounds like a css issue. Default templates work here, got url to see it in action?
Re: Vertical menu not showing correctly
It could well be an css issue. I noticed it also in the standard installation. But www.finn.arildsen.com is my website, if you'd like to take a look.
Thanks for your fast response.
best regards,
Finn A.
Thanks for your fast response.
best regards,
Finn A.
Re: Vertical menu not showing correctly
I cant see the problem
but your html isnt valid and in FF I see top menu overlapping the header image (might get fixed with div#header {height:100px} )
can you take a screenshot of it happening?
btw, tried with winXP, ff1.5.0.3 and IE 6.0.2900.xpsp_sp2_gdr.050301-1519 (who understands the version numbering in IE!?!
but your html isnt valid and in FF I see top menu overlapping the header image (might get fixed with div#header {height:100px} )
can you take a screenshot of it happening?
btw, tried with winXP, ff1.5.0.3 and IE 6.0.2900.xpsp_sp2_gdr.050301-1519 (who understands the version numbering in IE!?!

Re: Vertical menu not showing correctly
Being a novice in using a CMS, I'm sure I have made some design mistakes. But I haven't dared touch the menu system. 
On this PC I'm using IE 6.0.2800.1106CO. I have attached a screen shot.
best regards,
Finn A.
[attachment deleted by admin]

On this PC I'm using IE 6.0.2800.1106CO. I have attached a screen shot.
best regards,
Finn A.
[attachment deleted by admin]
Re: Vertical menu not showing correctly
Now I see it 
thanks for the screenshot
it seems to be IE bug (li items are block level by default so they should be 100%; width but for some reason this doesnt happen in this ie version (which seems to be the default for windows 2000)
heres a fix
in Nav-vertical find
and change it to
let me know if it works right and Ill add it to svn

thanks for the screenshot
it seems to be IE bug (li items are block level by default so they should be 100%; width but for some reason this doesnt happen in this ie version (which seems to be the default for windows 2000)
heres a fix
in Nav-vertical find
Code: Select all
#menu_vert li {
list-style: none;
}
Code: Select all
#menu_vert li {
[color=Red]width: 100%;[/color]
list-style: none;
}
let me know if it works right and Ill add it to svn
Re: Vertical menu not showing correctly
Hi again,
I changed the stylesheet as per your advice. However, as far as I can tell, it didn't change the behavior. Incidentally, on the PC I'm sitting at right now, I'm using exactly the IE that you mentioned below, ie. IE 6.0.2900.xpsp_sp2_gdr.050301-1519
I changed the stylesheet as per your advice. However, as far as I can tell, it didn't change the behavior. Incidentally, on the PC I'm sitting at right now, I'm using exactly the IE that you mentioned below, ie. IE 6.0.2900.xpsp_sp2_gdr.050301-1519

Re: Vertical menu not showing correctly
ah sorry, forum didnt mark it right (I tried to emphasize the changed are)
correct syntax
note to self: remember to preview posts 
correct syntax
Code: Select all
#menu_vert li {
width: 100%;
list-style: none;
}

Re: Vertical menu not showing correctly
Many thanks for your extremely fast responses.
That did the trick.
I admit that I wondered about the syntax, but on the other hand, who am I as a novice to question it
Thanks again,
Finn
That did the trick.
I admit that I wondered about the syntax, but on the other hand, who am I as a novice to question it

Thanks again,
Finn
Re: Vertical menu not showing correctly
Great, glad it worked
Re: Vertical menu not showing correctly
i also noticed posting code in the code box doesn't allow color or styling,,
mark
mark