Hi info293,
To make the Navbar centered, please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS Code.
.navbar>.container, .navbar>.container-fluid {
display: block;
text-align: center;
}
.navbar-brand,
.main-navigation {
margin-right: inherit;
margin-left: inherit !important;
}
.navbar-collapse {
-ms-flex-pack: center;
justify-content: center;
text-align: left;
}
.navbar-toggler {
position: absolute;
top: 30px;
right: 15px;
}
And for the Font Family “Gupter”. Google adds new fonts time to time and the mentioned font is added after our theme updates. We will soon add these on our next updates. For now to add the font “Gupter” on the list please go to the ‘Theme Directory > inc > customizer.php’. on line no: 293 and 294 you will find below codes.
"Gudea" => "Gudea",
"Gurajada" => "Gurajada",
Now add the below provided font code in between of above mention code.
"Gupter" => "Gupter",
After adding, the code should look like this.
"Gudea" => "Gudea",
"Gupter" => "Gupter",
"Gurajada" => "Gurajada",
Now save the file and you will see the ‘Gupter’ font on the Font family list.
Thanks