Skip to content

Center Mobile Menu

Center Mobile Menu

/* Positon mobile menu under logo /* Will no longer work with fixed header without additional tweaks */ body #mobile-menu { clear: both; position: relative; right: auto; top: auto; margin: 0; padding: 20px 0; } /* Make mobile menu span…

Read more

Display Thumbnail Above Title For Pages

// Display post thumbnail above the title on pages function my_add_thumbnail_to_pages() { // For pages only if ( ! is_page() ) { return; } ?> 'full', 'alt' => wpex_get_esc_title(), ) ); ?> <?php } add_action( 'wpex_hook_page_header_before', 'my_add_thumbnail_to_pages' );

Read more

Disable The Mobile Sidebar Displace Animation

// Disable mobile displace for the sidr mobile menu function my_disable_sidr_displace( $array ) { // Set sidrDisplace to false $array['sidrDisplace'] = false; // Return array return $array; } add_filter( 'wpex_localize_array', 'my_disable_sidr_displace', 20 );

Read more
Back To Top