Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1020800

    How do I change the message text font style/family within the notification box.

    .avia_message_box_content

    #1020801

    Hey qtinfo,

    It should just be adding this in quick css:

    .avia_message_box_content{
    font-family:your font!important;
    }

    Best regards,
    Jordan Shannon

    #1020846

    I’m trying to change the font by doing the following but it’s not working.
    @font-face {
    font-family: “Tangerine”;
    src: url(“ttps://fonts.googleapis.com/css?family=Tangerine”);
    }
    .avia_message_box_content
    {
    font-family: Tangerine !important;
    }

    #1020870

    Hi,

    Please provide a link to the site/page in question so we can look into this issue further.

    Best regards,
    Jordan Shannon

    #1020909
    This reply has been marked as private.
    #1021140

    Hi,

    Thanks for that, though it looks to be working already on my end?

    Best regards,
    Rikard

    #1021737

    it changes but Tangerine is cursive and it’s not changing to that. I just created an image and added it that way, thank you!

    #1021969

    Hi,

    Ok great, thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1022007

    First: you recognized that the absolute url to your font-file is not correct? https

    and of course this is not the recommended method to load these Google Fonts. Either go via a link
    <link href="https://fonts.googleapis.com/css?family=Tangerine" rel="stylesheet">
    or the @import rule.
    @import url('https://fonts.googleapis.com/css?family=Tangerine');
    the @import rule you can try to place it in the quick css.

    you can load the font on your child-theme functions.php by:

    add_action('wp_head', function() {
    ?>
    	<link href="https://fonts.googleapis.com/css?family=Tangerine" rel="stylesheet">
    <?php
    });

    but Tangerine is in the allready implemented Set of Enfold. – but if it is not your body font or heading font, you can start the loading process by defining this font in the advanced settings, e.g. for h6.
    Then you can assign this font to other selectors via quick css.

    #1022153

    Hi,

    Thanks for sharing and helping out @guenni007 :-)

    Best regards,
    Rikard

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