Search…

X3 Photo Gallery Support Forums

Search…
 
Ernesto1959
Topic Author
Posts: 9
Joined: 30 Dec 2019, 08:52

navigation font size

13 Jan 2020, 12:47

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
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: navigation font size

14 Jan 2020, 01:26

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.