-
AuthorPosts
-
October 12, 2018 at 7:23 pm #1020800
How do I change the message text font style/family within the notification box.
.avia_message_box_content
October 12, 2018 at 7:25 pm #1020801Hey qtinfo,
It should just be adding this in quick css:
.avia_message_box_content{ font-family:your font!important; }
Best regards,
Jordan ShannonOctober 12, 2018 at 9:10 pm #1020846I’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;
}October 12, 2018 at 10:20 pm #1020870Hi,
Please provide a link to the site/page in question so we can look into this issue further.
Best regards,
Jordan ShannonOctober 13, 2018 at 2:08 am #1020909This reply has been marked as private.October 14, 2018 at 4:41 am #1021140Hi,
Thanks for that, though it looks to be working already on my end?
Best regards,
RikardOctober 15, 2018 at 7:33 pm #1021737it changes but Tangerine is cursive and it’s not changing to that. I just created an image and added it that way, thank you!
October 16, 2018 at 5:44 am #1021969Hi,
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,
RikardOctober 16, 2018 at 7:09 am #1022007First: 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.October 16, 2018 at 1:08 pm #1022153 -
AuthorPosts
- You must be logged in to reply to this topic.