I am using my own theme. I developed it.
No one here is going to be able to help much, as we can’t see the code. These forums are for the themes available in the WordPress theme directory at http://wordpress.org/themes/.
It’s best to use the developer and responsive view tools in Firefox (or Firebug) or Chrome or Safari or IE to see what’s loading on your site and how to work with the responsive views and change the CSS and HTML.
The sites work perfectly in all browsers (desktop and mobile), except in Safari on iOS.
Two weeks ago both were working normally in Safari.
functions.php
<?php
add_filter('show_admin_bar', '__return_false');
include 'woocommerce/woo-functions.php';
// ESTILOS E SCRIPTS
function inova_enqueue_style() {
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/fonts/FontAwesome/font-awesome.css', array(), '4.6', 'all' );
wp_enqueue_style( 'owl-carousel', get_template_directory_uri() . '/assets/css/owl.carousel.css', array(), '2.0', 'all' );
wp_enqueue_style( 'inova-geral', get_template_directory_uri() . '/style.css', array(), '1.0', 'all');
}
function inova_enqueue_script() {
wp_enqueue_script( 'inova-jquery', get_template_directory_uri() . '/assets/js/jquery.min.js', array(), '2.1.3');
wp_enqueue_script( 'owl-js', get_template_directory_uri() . '/assets/js/owl.carousel.js', array(), '2.0');
wp_enqueue_script( 'inova-main', get_template_directory_uri() . '/assets/js/main.js', array());
}
add_action( 'wp_enqueue_scripts', 'inova_enqueue_style' );
add_action( 'wp_enqueue_scripts', 'inova_enqueue_script' );
// MENU
function register_my_menus() {
register_nav_menu('menu', __('Menu'));
}
add_action( 'init', 'register_my_menus' );
// THUMBNAIL
if (function_exists('add_theme_support')):
add_theme_support('post-thumbnails');
add_image_size( 'posts', 740, 340, true);
endif;
?>