Page 1 of 1

Styling JQVertMenu

PostPosted: 29 Jan 2016 10:29
by Davide
Hello,

in my application I put a JQVertMenu inside a region which has color = clWebWhite.
How can I remove (or set them to clWebWhite) the border and the background theme color from JQVertMenu so it visually integrated with the Parent region ?
I try changing the style property but the menu is still shown with border and theme background.

Thank you,
Davide

Re: Styling JQVertMenu

PostPosted: 29 Jan 2016 15:52
by Alexander Bulei
Hi Davide,

You can set the UIThemeroller to False, and define the custom css of JQVertMenu:

delphi code
IWCGJQVertMenu1.Css:= 'custom-theme-vertmenu';


And in custom css file:

css code
.custom-theme-vertmenu li a{
/* your css properties to override the style */
}


Best Regards.