Page 1 of 1

navigation font size

Posted: 13 Jan 2020, 12:47
by Ernesto1959
Hi
I'd like to have the navigation font-size bigger.
How to get that?
Thanks a lot for your help and best regards
Aschi

Re: navigation font size

Posted: 14 Jan 2020, 01:26
by mjau-mjau
Settings > Custom > Custom CSS:
Code
.menu>li>a {
  font-size: .9rem !important;
}
You can adjust the value up/down, or also set a bolder font:
Code
.menu>li>a {
  font-size: 1rem !important;
  font-weight: 400 !important;
}
The above examples ONLY affect the top-level menu items. If you want to edit fonts in dropdowns also:
Code
.menu a {
  font-size: .9rem !important;
}
.menu>li>a {
  font-size: 1rem !important;
  font-weight: 400 !important;
}
In a future X3 release, we will make it simpler to change basic styles.