Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #664998

    I would like my headings to be Helvetica which is available as a body font but not as a heading font. How would I go about setting this.

    Also the “Display a small arrow that points down to the next section:” How would I make this arrow larger? Like on this site: https://getwalkio.com/

    #665012

    Hey Kyle,

    1. Try adding this at the very end of your theme / child theme functions.php file:

    add_filter( 'avf_google_heading_font',  'avia_add_custom_font');
    function avia_add_custom_font($fonts) {
    	$fonts['Helvetica'] = 'Helvetica';
    	return $fonts;
    }

    2. Try adding this code to the Quick CSS:

    .avia_transform .av-extra-border-element .av-extra-border-inner {
        left: 50%;
        width: 130px;
        height: 130px;
        top: -8px;
    }
    
    .avia_transform .av-extra-border-element.border-extra-arrow-down{
        position: relative;
        width: 185px;
        height: 150px;
        left: 50%;
        margin-left: -85px;
        margin-top: 0px;
        z-index: 25;
        margin-bottom: -85px;
        clear: both;
     }

    Best regards,
    Josue

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