Overylaying Bar covering Logo/Menu on Mobile
-
Hello, My site https://www.beautifullyinked.us has a bar on the mobile version that is blocking the viewing and use of the LOGO/MENU I can’t figure this out…Anyone able to help me? This problem is seen on MOBILE ONLY. Everything looks fine on the desktop version..
This is my header…I figured it would probably be coming from here?<!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <title><?php wp_title('·', true, 'right'); ?></title> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> <link rel="stylesheet" type="text/css" media="all" href="<?php echo get_template_directory_uri(); ?>/style.css" /> <link rel="profile" href="https://gmpg.org/xfn/11" /> <link href="<?php echo get_template_directory_uri(); ?>/genericons/genericons.css" rel="stylesheet"> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <?php wp_head(); ?> </head> <body <?php body_class('lt-480'); ?>> <div id="page-wrap"> <div id="page"> <?php $blogTitle = get_bloginfo('name'); $headerImage = get_theme_mod('careta_header_image', ''); $headerShowName = (bool)get_theme_mod('careta_header_showname', true); $headerShowMenu = (bool)get_theme_mod('careta_header_showmenu', true); ?> <a id="mobile-menu" href="#menu"></a> <div id="header"> <div class="wrap"> <div class="inner"> <a href="<?php echo home_url(); ?>" title="<?php echo str_replace('"', '\'', $blogTitle); ?>"> <div id="blog-title"> <?php if ($headerShowName) echo $blogTitle;?> </div> </a> <?php if ($headerShowMenu) { ?> <div id="menu"> <?php wp_nav_menu(array( 'theme_location' => 'primary', 'container' => false )); ?> </div> <?php } ?> </div> <?php if (get_theme_mod('careta_social_location', 'header') == 'header') careta_draw_social(); ?> </div> </div> <div id="main" class="wrap clear">
- The topic ‘Overylaying Bar covering Logo/Menu on Mobile’ is closed to new replies.