Tagged: 

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #873476

    Hello!

    Can you help me change the fonts of my site buttons from open sans to montserrat? Thank you!

    #873758

    Hey mfrahm,

    You can set Monserrat font in the Theme options > General styling > Fonts
    Image 2017-11-07 at 15.48.11.png

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #873887

    Thank you – but I am hoping to change the buttons specifically, from open sans to montserrat.

    I tried this code, but it didn’t work.

    body div .avia-button {
    font-family: ‘Montserrat’;
    }

    #874516

    Hi,

    Will the following not work:

    .avia-button {
    font-family: ‘Montserrat’!important;
    }

    Best regards,
    Jordan Shannon

    #874823

    That just changed it to a times new roman font.. I just want the button font to match the heading font. seems like it should be easy right? lol

    #875235

    Hi,

    It should be in theory yes, but if its not working we need to find out why. Are you running any custom css that may be preventing the css given from running. Perhaps something is structured incorrectly?

    Best regards,
    Jordan Shannon

    #875426

    Quite possibly.. I’m not sure

    The quick CSS I have implemented is linked in private content.

    #875652

    Hi,

    The css looks fine. Is the font not rendering in any browser or a specific one?

    Best regards,
    Jordan Shannon

    #876313

    It’s happening on both Chrome and Safari

    #876679

    Hi mframe,

    The button is set to Montserrat. Is it not rendered with it? Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    #876838

    Yes, it is not rendering correctly, it seems to be coming through as a times new roman or other such serif font.

    I attached login credentials.

    #877925

    Hi,

    Thank you for the info.

    We added the following css code in the Quick CSS field.

    .avia_iconbox_title {
        font-family: 'Montserrat','HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;
    }

    Best regards,
    Ismael

    #879446

    Thank you, that worked perfectly!

    One more question – is there a way to change the font that automatically populates in my Contact Form 7 boxes, seen on the homepage, top left, along with the button underneath? It shows up as Arial, I’d like the font to be open sans for the form fields and Montserrat on the button.

    Thanks

    #879490

    Hi,

    Please use the following css code.

    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
        border-color: #444;
        background-color: #111;
        color: #8c8c8c;
        font-family: 'Open Sans','HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;
    }
    
    .wpcf7-form input[type="submit"] {
        font-family: 'Montserrat','HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;
    }

    Best regards,
    Ismael

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