Thank you very much, I've solved differently.
I changed the file <joomla_dir>/modules/mod_ariextmenu/mod_ariextmenu/templates/main.html.php about line #53
Code: |
printf('<style type="text/css">#%1$s A{ /*font-size: %2$s !important; font-weight: %3$s !important; text-transform: %4$s !important; */}</style>',
|
by this
And the line about #64
Code: |
sprintf('<style type="text/css">#%1$s A{ /*font-size: %2$s !important; font-weight: %3$s !important; text-transform: %4$s !important; */}</style>',
|
by this
I canceled the options of backend, to manage it with only CSS. And I have succeeded, thanks to this code:
Code: |
.ux-menu-sub li a {background:#eee;color:#505050;font-size:14px !important;font-weight:bold !important;text-align:left !important;border-top:0 !important;border-bottom:0 !important;border-right:1px solid #C5C5C5 !important;border-left:1px solid #C5C5C5 !important;padding:7px !important;}
.ux-menu-sub li a:hover {background:#fff;color:#505050;font-size:14px !important;font-weight:bold !important;}
.ux-menu-sub .ux-menu-link-last a {border-bottom:1px solid #C5C5C5 !important;}
.ux-menu li li{width:200px;height:auto;margin:0px;padding:0px;}
|
You can see the final result on the image below:
Thank you very much.
Regards,