I´d like to have the items in the modul asmenu with letters in capitel and lowercase. i changed like in the post of 2014-01-03:
For capitalizing the menu items you have to edit ext.asmenu.css file,
please find the following class (line 21):
#as-menu ul.as-menu > li a,
#as-menu ul.as-menu > li > span
{
color: #FFFFFF !important;
display: block;
font-weight: normal;
letter-spacing: 1px;
line-height: 20px;
margin: 0;
padding: 0 5px;
}
and add this property:
text-transform: capitalize
that means:
#as-menu ul.as-menu > li a,
#as-menu ul.as-menu > li > span
{
color: #FFFFFF !important;
display: block;
font-weight: normal;
letter-spacing: 1px;
line-height: 20px;
margin: 0;
padding: 0 5px;
text-transform: capitalize;
}
But this works only for the first level. The sub items still in lowercase.
Example: www.relocationplus.de
Thanks for your support.
AS Templates
POSTED: 2015-01-29
Hello KLEEBERG,
You can do it in the following class:
#as-menu ul.as-menu ul li a,
#as-menu ul.as-menu ul li span
{
background-image: none !important;
color: #999 !important;
margin: 0;
text-transform: lowercase;
}
You can easy determinate the file which should be changed and the css class by installing and using Mozilla or Opera Fireblug plugin:
https://getfirebug.com/
https://addons.opera.com/en/extensions/details/firebug-lite-button/
Regards, AS Team.
kleeberg
POSTED: 2015-01-29
Hello AS Templates,
now it works correctly with the parameter
text-transform: none;
Get an access to all 94 items designed and developed by AS Designing team plus all the future items
which will be released over the course of your club subscription.
Price starting from $59.00
For capitalizing the menu items you have to edit ext.asmenu.css file,
please find the following class (line 21):
#as-menu ul.as-menu > li a,
#as-menu ul.as-menu > li > span
{
color: #FFFFFF !important;
display: block;
font-weight: normal;
letter-spacing: 1px;
line-height: 20px;
margin: 0;
padding: 0 5px;
}
and add this property:
text-transform: capitalize
that means:
#as-menu ul.as-menu > li a,
#as-menu ul.as-menu > li > span
{
color: #FFFFFF !important;
display: block;
font-weight: normal;
letter-spacing: 1px;
line-height: 20px;
margin: 0;
padding: 0 5px;
text-transform: capitalize;
}
But this works only for the first level. The sub items still in lowercase.
Example: www.relocationplus.de
Thanks for your support.
You can do it in the following class:
#as-menu ul.as-menu ul li a,
#as-menu ul.as-menu ul li span
{
background-image: none !important;
color: #999 !important;
margin: 0;
text-transform: lowercase;
}
You can easy determinate the file which should be changed and the css class by installing and using Mozilla or Opera Fireblug plugin:
https://getfirebug.com/
https://addons.opera.com/en/extensions/details/firebug-lite-button/
Regards, AS Team.
now it works correctly with the parameter
text-transform: none;
Thanks
Michael