Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #414514

    I would like to wrap my main logo (in the header area) in an H1 tag. Would someone please help me accomplish this?

    #414840

    Hi cringeisennc!

    Add this to your custom CSS.

    add_filter( 'avf_logo_headline', 'enfold_customization_logo_h1' );
    function enfold_customization_logo_h1( $headline ) {
    	return 'h1';
    }

    Cheers!
    Elliott

    #414905

    @Elliott : how can I add keyword with H1 in frontpage please ?

    #414929

    Hi!

    Please try using this plugin – https://wordpress.org/plugins/wordpress-seo/

    Regards,
    Yigit

    #415383

    Thank you very much; it didn’t seem to work.
    Would you please also let me know if there a way to simply have plain text (no image) in the same area as the logo?

    #415385

    Hey!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
        $sub .= "<h1>Company Name</h1>";
        return $sub;
    }

    Best regards,
    Yigit

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