Hi @dom71530
If you would like to display the slider in that area, then you will need to do some custom coding, to publish the slider into that “header” element.
We have a documentation for the Neve theme, that shows how you can publish the slider into that theme, by creating a Child theme:
Just if you want the slider to appear in the “header” element, then instead of the “neve_after_header_wrapper_hook” action you should rather use the “neve_before_header_hook” or “neve_after_header_hook” actions. If you open this file of the Neve theme:
- wp-content/themes/neve/header.php
then you will be able to find out where each action is fired exactly.
Please note that, the the slider is a relative positioned element by default, which means it will just appear above or below the menu items. If you want the menu items to overlap the slider, then you will need to make those elements absolute positioned, and you should probably also set a higher z-index otherwise the slider might cover the menu items. Making these modifications might requires some other extra CSS as well, so I only suggest doing this if you have the necessary coding knowledge.
If you really want to display the slider in the “header” element, then what I would rather suggest is to create the entire content in the slider, that way the only need to add CSS to hide the default elements of Neve if you don’t need them.
Best regards,
Laszlo.