Reply To: 2 (separate) questions: Parallax & Nav menu

Home Forums Support 2 (separate) questions: Parallax & Nav menu Reply To: 2 (separate) questions: Parallax & Nav menu

Home Forums Support 2 (separate) questions: Parallax & Nav menu Reply To: 2 (separate) questions: Parallax & Nav menu

#184461
Tom
Lead Developer
Lead Developer

Ah, it’s definitely working, just a bit subtle.

You can increase the effect with a filter:

add_filter( 'generate_sections_parallax_speed','generate_custom_parallax_speed' );
function generate_custom_parallax_speed()
{
     return 6;
}

6 is the default – the lower the number, the greater the effect.

Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/