ShowMenu2 Childeren page CSS problem

Briefcase

thanks, I'll dig into it the coming days.

Ruud

The defaul;t styling is done on the a.menu-sibling class

a.menu-sibling {
color:#FFFFFF;
display:inline;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:13px;
font-weight:bolder;
text-decoration:none;
}


When you are in a submenu this class doesn't exist.
These settings should be in something like
.menuwrapper a {
color:#FFFFFF;
display:inline;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:13px;
font-weight:bolder;
text-decoration:none;
}


For the rest your menu is a very deep nested <font> <font> <font> structure.
I don't know what you did with the show_menus call, but it isn't good formed.


Tip. on my (Dutch) site (http://websitebaker.allwww.nl/wb/posts/fouten-in-css-oplossen13.php) there are some tools described on how you can debug your css.
Using FF + FireBug it is very simple to see why your CSS didn't work.

Ruud
[url=https://dev4me.com/modules-snippets/]Dev4me - WebsiteBaker modules[/url] - [url=https://wbhelp.org/]WBhelp.org[/url]


Ruud

If you have it online and give us a link to look at, we might be able to help.

Ruud
[url=https://dev4me.com/modules-snippets/]Dev4me - WebsiteBaker modules[/url] - [url=https://wbhelp.org/]WBhelp.org[/url]

Briefcase

the CSS properties of the menu is perfectly OK when displaying the normal page, but when a child page is added I'm loosing all of the CSS of the menu, the content of the page is displayed correctly.

Path to the CSS file is correct (must be otherwise it wouldn't show the content CSS) when checking the output.

Any bright ideas?

thanks.