Viewing 3 replies - 1 through 3 (of 3 total)
  • Unlike Czr, that site does not have a ‘sticky header’ feature so the header rolls off the page as you scroll. You can disable the sticky header at Customise>Header>Design and layout if you wish.

    A snippet shows how to add the slider anywhere.

    Thread Starter leandro.spina

    (@leandrospina)

    Hello I insert some code to change the position.

    But just changed the home page and the slider was up menus.

    Below the code that cite
    // we hook the code on the wp_head hook, this way it will be executed before any html rendering.
    add_action (‘wp_head’, ‘move_my_slider’);
    move_my_slider function () {
    // we unhook the slider
    remove_action (‘__after_header’, array (TC_slider :: $ instance, ‘tc_slider_display’));

    // we re-hook the slider. Check the priority here: set to 0 to be the first in the list of different actions hooked to this hook
    add_action (‘__header’, array (TC_slider :: $ instance, ‘tc_slider_display’), 0);
    }?

    I would like the slider and the menus maintain their initial position and crashes throughout the site? without reversing the position

    menu yes, but slider is only there on home page. you would need to enable slider on each page manually or find some PHP hack

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Header Slider menu – Lock’ is closed to new replies.