Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #88901
    David
    Participant

    Hello, I buy the new theme Jomsom Pro, but not fórum topic yet ! sorry my english..i speack spanish 🙁

    In the Jomsom free the primary menú is under the header image but in the Jomsom Pro is imposible put under header image.. only can stay over the header image .. how i can put the primary menú under the image…
    thankyou.

    #88909
    Mahesh
    Keymaster

    @daviddomi: You’ll need to create a child theme for this. You can find more details on creating child theme HERE. Then in your functions.php add the following code:

    function jomsom_featured_image_display() {
        $options = jomsom_get_theme_options();
    
        if ( "before-header" == $options['featured_header_image_position']  ) {
            add_action( 'jomsom_header', 'jomsom_featured_overall_image', 15 );
        }
        elseif ( "after-slider" == $options['featured_header_image_position'] ) {
            add_action( 'jomsom_before_content', 'jomsom_featured_overall_image', 20 );
        }
        elseif ( "after-header" == $options['featured_header_image_position'] ) {
            add_action( 'jomsom_after_header', 'jomsom_featured_overall_image', 40 );
        }
    }

    Note: Please make sure that Before Header option is selected in Featured Header Image Position.

    Regards,
    Mahesh

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Jomsom Pro menu ubication’ is closed to new replies.