Astra child theme
If you can't find any good positions with Astra settings, then follow this tutorial.
This documentation can help you put a slider under the top menu of the Astra theme.
- 1
-
Go to the FTP of your website and create a child folder
/wp-content/themes/astra-child/
- 2
-
Create a style.css file in this folder
/wp-content/themes/astra-child/style.css
and write this code in it:
/* Theme Name: Astra child theme Template: astra */
- 3
-
Create a functions.php file
/wp-content/themes/astra-child/functions.php
Write this code in it, just replace the shortcode with your slider's:
<?php function smart_slider_header(){ echo do_shortcode('[smartslider3 slider=1]'); } add_action('astra_header', 'smart_slider_header', 11);
- 4
-
Activate your child theme