I tried deactivating one plugin at a time, but nothing changes.
I did a test with the “Parent Theme” but you always see the mobile & tablet version decentralized.
Yes, I normally use a child theme, I created a style.css file in the child folder with this written inside
/*
Theme Name: Shapebox Child
Theme URI: https://www.coscienzauniversale.it/
Description: Child theme for Shapebox theme
Author: Stefy
Author URI: https://alx.media/
Template: shapebox
Version: 0.1.0
*/
then in the functions.php file at the end I added this:
}
add_action( ‘wp_print_footer_scripts’, ‘shapebox_skip_link_focus_fix’ );
add_action( ‘wp_enqueue_scripts’, ‘enqueue_parent_theme_style’ );
function enqueue_parent_theme_style() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri().’/style.css’ );
}
is there any mistake in this?
Could you give me any other advice to fix this problem?