badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Menu and Font Question

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #81180
    info293
    Participant

    How can I make my primary menu centered, instead of right aligned?

    Additionally, I need to use Google font “Gupter” – why isn’t this available in the font choices? I thought the theme had access to the full Google font list.

    Thanks.

    #81299

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.