Page 1 of 1

2 questions about SubMenu

PostPosted: 21 Jan 2015 21:12
by EitanArbel
hi

1. how can we change the font of a submenu please?
2. when setting a submenu to ItemAsTitle:=True, the submenu becomes static, and we can't see anything changes when MouseOver it in runtime.

Thanks

Eitan

Re: 2 questions about SubMenu

PostPosted: 22 Jan 2015 16:40
by Alexander Bulei
Hi EitanArbel,

1. how can we change the font of a submenu please?


The font style is controlled by jquery theme framework, so if you need change style, you need override the classes.

In this case, use this :

Code: Select all
.menuContainer


In our forum, you can find how to do this.

2. when setting a submenu to ItemAsTitle:=True, the submenu becomes static, and we can't see anything changes when MouseOver it in runtime.


Expected behavior ;)

Best Regards.

Re: 2 questions about SubMenu

PostPosted: 23 Jan 2015 15:20
by EitanArbel
The font style is controlled by jquery theme framework, so if you need change style, you need override the classes.
In this case, use this :

Code: Select all
.menuContainer


In our forum, you can find how to do this.


from what i found here it looks like a lot of trouble, just to change something so trivial, like the font...
i'm not a web programmer, i just use Delphi and Intraweb to get on the web what i can do like i was using it for Win.
i don't understand how to use ".menuContainer".
can you show an example code or instructions please?


2. when setting a submenu to ItemAsTitle:=True, the submenu becomes static, and we can't see anything changes when MouseOver it in runtime.

yes, sorry i confused it with "parent"... ;)

Re: 2 questions about SubMenu

PostPosted: 23 Jan 2015 17:31
by Alexander Bulei
Hi EitanArbel,

Here you have the tutorial: viewtopic.php?f=5&t=1539

Just put this css class in custom css file and save.

css code
.menuContainer{
font-size: 10px !important;
}


Also, in tutorial, you can find useful links.

Best Regards.