Hi, Where can I get set the header menu in upper case?
Hey robertoKM,
This can be done via css. Please provide a link to the site/page in question.
Best regards,
Jordan Shannon
I didi with:
#top #header .av-main-nav > li > a .avia-menu-text {
text-transform: uppercase;
}
Now how can I get more space between one letter and the other?
like this: m e n u
Hi,
You would want to use “letter-spacing” css.
Best regards,
Jordan Shannon
thank Jordan, can you send me the entire code CSS using letter-spacing?
Hi,
You would basically use:
#top #header .av-main-nav > li > a .avia-menu-text {
text-transform: uppercase;
letter-spacing:15px!important;
}
Adjust to what you need.
Best regards,
Jordan Shannon