Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #340268

    outer_net
    Participant

    The only issues in the Logobar / Navbar sections now are:

    1 – right text in white doesn’t have capital 1st letters for the words Fragments , Malcolm & Whittaker

    2- Logo is 20 % larger than in should be.

    3- Error around the bottom and left of the navbar / the green space.

    4- social icons should be further to the left to follow the same spacing as search / cart

    5- the following text in the logobar should be 1 font size smaller: 01706839714 / info@waterstreetgallery.co.uk

    I will take the code out right now.

    Thankyou soooo much

    #340383

    Zeshan
    Member

    Hi there,

    I went ahead and updated your HTML code in file _navbar.php, this should fix most of these issues. For the lowercase letters, replace your following current CSS code in the Customizer:

    .x-logobar h6, .x-logobar .h6 {
      text-transform: lowercase;
    }
    

    With this:

    .x-logobar h6, .x-logobar .h6 {
      text-transform: none;
    }
    

    These questions are more likely related to custom development. We love to help our users but we cannot really provide custom development. At this time, if you need any further customization, it would be outside the scope of support we can offer. If you need more in depth changes, you may wish to consult with a developer. https://community.theme.co//custom-development/

    Thank you for understanding. Take care!

    #341868

    outer_net
    Participant

    Thanks Sooo much ,

    Worked perfectly.

    Damian

    #341933

    Thai
    Moderator

    You’re most welcome 🙂

    #374750

    cowgillconsulting
    Participant

    I, too, wish to change the font of my logobar text to Myriad Pro (an Adobe Typekit font which I am using throughout my new site: firstnet.site). I succeeded in changing the navbar font to Myriad Pro through custom css. I have tried to change the logobar font in the same way, using custom CSS in Customizer as indicated in a reply above — that is:

    .x-logobar {
    font-family : “myriad-pro”, sans-serif !important;
    }

    But it’s not working. The CSS declaration will not override the Typography setting (Open Sans). Any ideas? See firstnet.site.

    #375073

    John Ezra
    Member

    Hi there,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer or in your child theme’s style.css file.

    a.x-brand.text {
        font-family: "myriad-pro",Helvetica,sans-serif;
    }

    Hope this helps – thanks!