Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #288055

    Hello,

    I would like to know if there is a font preview option or somewhere online where I can preview them. Give me the list of fonts and I can check them online.

    I have been trying to change the color of titles in the header and it appears changed in the back but not on the page. I you check on lares.tailanian.com you will see that the page titles and the search icon look muddy against the orange background. I am trying to change that color to dark brown and cannot.

    Thank you for your help.

    Kaira

    • This topic was modified 9 years, 8 months ago by Larestours.
    #288110

    Hey Larestours!

    You can preview Google fonts on their website – https://www.google.com/fonts
    Please go to Enfold theme options > Advanced Styling and edit main menu links as needed. I have applied dark brown and it does work fine – http://i.imgur.com/8BrKJzL.png

    Best regards,
    Yigit

    #288661
    This reply has been marked as private.
    #288796

    Hey!

    Thank you for the update.

    Please add this on Quick CSS or custom.css:

    #top .av-main-nav > li > a {
    color: white;
    }

    If you want to change the color of the social icons as well, use this:

    .header_color .social_bookmarks a {
    color: white;
    }

    Use this one for the submenu:

    .header_color .main_menu .menu ul li a {
    color: white;
    }
    
    #top .header_color .main_menu .menu ul li>a:hover {
    color: #ffffff;
    background: orange;
    }

    Best regards,
    Ismael

    #289115
    This reply has been marked as private.
    #289122

    Hey!

    Please go to Enfold theme options > Advanced Styling and edit “Main Menu Links”

    Regards,
    Yigit

    #475331

    Enfold does not have all google fonts. For example, I am looking for a clean san serif font, so I go through Google Font preview and find a perfect font, Oxygen, yet, it is not in Enfold.

    It would be nice if you have a page preview for the fonts you have pre-installed for Enfold.

    Thanks

    #475602

    Hi!

    You can add new fonts to the dropdowns by using the following in your child themes functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800';
    return $fonts;
    }

    Cheers!
    Rikard

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