Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #396031

    I’d like to make the name of my pages that appear on the title bar an h4 header tag instead of h1.

    How can this be done?

    Thanks for all your help as always. Best support ever!

    -Dave

    #396175

    Hi atrixdave!

    Try adding this to the bottom of your functions.php file.

    add_filter( 'avf_title_args', 'enfold_customization_change_title_heading' );
    function enfold_customization_change_title_heading( $args ) {
    	$args['heading'] = 'h4';
    	return $args;
    }

    Cheers!
    Elliott

    #397095

    Thank you Elliott! That worked, except for this page: http://www.crude.com/blog/

    How can I change that Title bar to h4?

    #397387

    Hi!

    It seems to be working fine on my end – http://i.imgur.com/Cibe9J1.png
    Have you figured it out already?

    Cheers!
    Yigit

    #397741

    Looks good…must have been a cache issue on my end. Thanks guys!!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How to change title bar header to h3?’ is closed to new replies.