Tagged: 

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

    I used the following code to remove the Title/h1 (I want to specify my h1 in the page)

    add_filter( 'avf_title_args', 'avf_product_titleee', 0, 2 );
    function avf_product_titleee( $args, $id ) {
    	$args['title'] = "";
    	$args['link'] = "";
    	$args['heading'] = "strong";
    	return $args;
    }

    I’d like to move the breadcrumbs to where the title was originally, on the left side.
    Can anyone tell me how that is accomplished?

    thanks in advance

    #408802

    Hi Scott!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .title_container .breadcrumb { right: auto; left: 50px; }

    Regards,
    Yigit

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