Hi
The main navigation font size and font weight of The T4 Framework T4 Bs5 Blank Template is not determined by dynamic settings on admin panel. You set navigation font-size and font weight on admin panel of t4 blank template but as you see on front page there are some other CSS rules that interfere this options. Actually it should be decided by Admin Values.
The main css rule deciding Navigation styles should be the code below but it is not:
.t4-megamenu {
font-family: var(--megamenu-font-family);
font-size: var(--megamenu-font-size);
font-weight: var(--megamenu-font-weight);
line-height: var(--megamenu-line-height);
letter-spacing: var(--megamenu-letter-spacing);
}
See attached video please. As you can see at the and of video after disabling all other rules interfering then the admin values determine font size and font-weight:
https://www.veed.io/view/7d23fd2d-65df-4b9b-b3e0-be196228b4e0?panel=share
I have to add that code to my custom.css for correction
.t4-megamenu .navbar-nav > li > a, .t4-megamenu .navbar-nav > li > .nav-link, .t4-navbar .navbar-nav, .t4-navbar .navbar-nav > li > a, .t4-navbar .navbar-nav > li > .nav-link, .t4-navbar .nav {
font-weight: var(--megamenu-font-weight) !important;
font-size: var(--megamenu-font-size) !important;
}