Hi,
how to change the menu items from all uppercase to sentence type?
Ex: HOME = Home
I searched the css-files for "text-transform:". I can only change all the other items (breadcrumbs, article titles, etc) but the menu items.
My Page is running offline on my computer, so I can't give any url.
It looks the same as the AS002066 sample page, since I installed the sample template data.
Thanks for you help!
AS Templates
POSTED: 2014-05-21
Hello CORNELIUSJORDAN,
You can change it in the extension css file: modules/mod_as_menu/css/ext.default.css file, the following class:
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
how to change the menu items from all uppercase to sentence type?
Ex: HOME = Home
I searched the css-files for "text-transform:". I can only change all the other items (breadcrumbs, article titles, etc) but the menu items.
My Page is running offline on my computer, so I can't give any url.
It looks the same as the AS002066 sample page, since I installed the sample template data.
Thanks for you help!
You can change it in the extension css file: modules/mod_as_menu/css/ext.default.css file, the following class:
#as-menu ul.as-menu > li > a,
#as-menu ul.as-menu > li > span
{
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
color: #F7F7F7;
display: block;
font-size: 18px;
font-weight: bold;
height: 20px;
line-height: 20px;
padding: 27px 1em;
text-transform: uppercase;
}
Regards, AS Team.