Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1252482

    Hi,

    How can I change my Masonry title from H3 to an H2?

    And how can I add this hover effect (under ‘UNRIVALED WORLD CLASS SERVICES’): https://www.primefinish.com.au/

    Thanks,
    Lachlan.

    #1253262

    Hey wearehike,

    Here is the code you can put in your funtions.php

    
    
    function my_avf_customize_heading_settings( array $args, $context, array $extra_args = array() )
    {
    
    	if( $context == 'avia_masonry' )
    	{
    		$args['heading'] = 'h2';				//	change heading to h2
    	}
    	return $args;
    }
    
    add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 );
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1253409

    Thank you that changed it to an H2.

    But how can I achieve this hover effect like the following website? (under ‘UNRIVALED WORLD CLASS SERVICES’): https://www.primefinish.com.au/

    Regards,
    Lachlan.

    • This reply was modified 4 years, 9 months ago by wearehike.
    #1254434

    Hi Lachlan,

    I could not find how that effect was added and so I cannot offer a solution for you. You might want to hire a freelancer to help you with that.

    Best regards,
    Victoria

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