This forum has now moved. These topics have been left as a read-only archive. Please create all new topics in the Community space.
Can someone please help with this?
https://www.adaptavist.com/display/Builder/1+-+Changing+menu+bar+styles
On that page it says:
Menu item text
to follow
Thanks in advance.
View old comments
Jan 29, 2009
That all depends on what about the text you want to change, you may also be interested in the Extreme Menu Customisation page.
Apr 28, 2009
To simply change the font color of the menutiems, I had to use the following in my custom css:
div.dynarch-horiz-menu div div div div div table tr td div { color:#ffffff; }
Apr 29, 2009
Hi Jonathan,
I have limited knowledge of CSS, and I am really wondering why five times 'div' in a row has been specified. Could you explain that a little, please?
Thanks and regards, Herman.
You shouldn't need to specify the full DOM path to the element in the CSS rule. Something like this should work just as well:
div.dynarch-horiz-menu td div { color:#fff; }
Note that if you've added an icon to the menu item, the text gets displayed in a td, so we generally use something like:
div.dynarch-horiz-menu td div, div.dynarch-horiz-menu td td { color:#fff; }
Thanks Guy.
Comments (5)
Jan 29, 2009
Alain Moran says:
That all depends on what about the text you want to change, you may also be inte...That all depends on what about the text you want to change, you may also be interested in the Extreme Menu Customisation page.
Apr 28, 2009
jonathan doklovic says:
To simply change the font color of the menutiems, I had to use the following in ...To simply change the font color of the menutiems, I had to use the following in my custom css:
div.dynarch-horiz-menu div div div div div table tr td div { color:#ffffff; }Apr 29, 2009
Herman de Boer says:
Hi Jonathan, I have limited knowledge of CSS, and I am really wondering why fiv...Hi Jonathan,
I have limited knowledge of CSS, and I am really wondering why five times 'div' in a row has been specified. Could you explain that a little, please?
Thanks and regards, Herman.
Apr 29, 2009
Guy Fraser says:
You shouldn't need to specify the full DOM path to the element in the CSS rule. ...You shouldn't need to specify the full DOM path to the element in the CSS rule. Something like this should work just as well:
div.dynarch-horiz-menu td div { color:#fff; }Note that if you've added an icon to the menu item, the text gets displayed in a td, so we generally use something like:
div.dynarch-horiz-menu td div, div.dynarch-horiz-menu td td { color:#fff; }Apr 29, 2009
Herman de Boer says:
Thanks Guy.Thanks Guy.