Hey guys,
I’m having a similar issue with my site (roseangel.nyc)
I’m viewing my site on a Samsung Note 4 and the drop down menu is not responding. The menu works fine on a laptop because it’s not dropdown. I’ve got a child theme, Chosen. How do I fix this?
I read the edits above but couldn’t find this in the header.php.
Here is what I currently have in my header php.
<?php
if ( is_home() ) {
echo ‘<h1 class=”screen-reader-text”>’ . get_bloginfo(“name”) . ‘ ‘ . __(‘Posts’, ‘chosen’) . ‘</h1>’;
}
if ( ! is_archive() ) {
return;
}
$icon_class = ‘folder-open’;
if ( is_tag() ) {
$icon_class = ‘tag’;
} elseif ( is_author() ) {
$icon_class = ‘user’;
} elseif ( is_date() ) {
$icon_class = ‘calendar’;
}
?>
<div class=’archive-header’>
<h1>
<i class=”fa fa-<?php echo $icon_class; ?>”></i>
<?php the_archive_title(); ?>
</h1>
<?php the_archive_description(); ?>
</div>
I’ll try to deactive and reactivate all my plugins to see if that helps.