Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #984721

    Hola.
    We need two things:
    1. How can we change the source of the top bar? Both Header Phone Number/Extra Info and Secondary Menu in the header.
    Currently in the css we have the font Geogrotesque but does not show well the typography.

    2. We need the top bar to disappear in the mobile version of the website, or better yet… to be able to put something different in the mobile version than in the web version.

    Thanks

    Translated with http://www.DeepL.com/Translator

    #984755

    Hey pegasoazul2002,

    1. What do you mean by the “source”? Do you want to change the font size?

    2. Could you please attach a mockup of what you’re trying to achieve?

    Best regards,
    Victoria

    #984811
    This reply has been marked as private.
    #984812

    Thanks

    #985678

    Hi,
    1: I see that the phone number and the link “Grupo Infrico” in the top bar has the font “Geogrotesque-SemiBold” assigned, but I don’t see that the font file is being loaded, and it doesn’t seem that it is available on Google Fonts.
    Did you upload the font?
    Then to assign the font to the whole topbar, Please try this code in the General Styling > Quick CSS field:

    
    #header_meta a, #header_meta {
        font-family: "Geogrotesque-SemiBold",sans-serif !important;
    }

    2: to hide the topbar on mobile, Please try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #header_meta {
    display: none !important;
    }
    }

    Best regards,
    Mike

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