• My site is on next domen: http://www.prelepapoezija.com
    I used skirmish theme!
    I want to put slider in my header, befor menu, and i use plugin EASING SLIDER.

    This is my header.php:

    <?php
    /**
    * The Header for our theme.
    *
    * Displays all of the <head> section and everything up till <div id=”main”>
    *
    * @package Skirmish
    * @since Skirmish 1.8
    */
    ?><!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />
    <meta name=”viewport” content=”width=device-width” />
    <title><?php
    /*
    * Print the <title> tag based on what is being viewed.
    */
    global $page, $paged;
    wp_title( ‘|’, true, ‘right’ );
    // Add the blog name.
    bloginfo( ‘name’ );
    // Add the blog description for the home/front page.
    $site_description = get_bloginfo( ‘description’, ‘display’ );
    if ( $site_description && ( is_home() || is_front_page() ) )
    echo ” | $site_description”;
    // Add a page number if necessary:
    if ( $paged >= 2 || $page >= 2 )
    echo ‘ | ‘ . sprintf( __( ‘Page %s’, ‘skirmish’ ), max( $paged, $page ) );
    ?></title>
    <link rel=”profile” href=”http://gmpg.org/xfn/11&#8243; />
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
    <?php wp_head(); ?>
    </head>
    <body <?php body_class(); ?>>
    <div id=”page” class=”hfeed site”>
    <?php do_action( ‘before’ ); ?>
    <header id=”masthead” role=”banner”>
    <div class=”site-header”>
    <hgroup>
    <h1 class=”site-title”>” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?></h1>
    <h2 class=”site-description”><?php bloginfo( ‘description’ ); ?></h2>
    </hgroup>

    <nav role=”navigation” class=”site-navigation main-navigation”>
    <h1 class=”assistive-text”><?php _e( ‘Menu’, ‘skirmish’ ); ?></h1>
    <div class=”assistive-text skip-link”>“><?php _e( ‘Skip to content’, ‘skirmish’ ); ?></div>

    <?php wp_nav_menu( array( ‘theme_location’ => ‘primary’ ) ); ?>
    </nav>

    <?php $header_image = get_header_image();
    if ( ! empty( $header_image ) ) { ?>
    <img src=”<?php header_image(); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” class=”headerimg” />
    <?php } // if ( ! empty( $header_image ) ) ?>

    </div><!– .site-header –>
    </header><!– #masthead .site-header –>

    <div id=”main”>
    When I add slider code befor menu, then be like the on next image:
    http://www.prelepapoezija.com/wp-content/uploads/2015/01/befor-menu.jpg

    When I add slider code after menu, then be like on next image:
    http://www.prelepapoezija.com/wp-content/uploads/2015/01/after-menu.jpg
    Then I can’t click on the menu.

    Can someone help?
    Thanks!

    https://ww.wp.xz.cn/plugins/easing-slider/

The topic ‘Easing slider – header slider, problem’ is closed to new replies.