The text links at the top are usually in the theme’s header.php file.
just paste that into your css
@media screen and (min-width: 800px)
.site-navigation .menu {
display: none;
Hi Rajesh and Pravniktz.
Thank you for your suggestions. I did try dropping that code into the main css file and it did nothing. Yes, I did refresh my browser. And I too thought that maybe it was something in the header that I could edit but my header does not contain much:
<?php
/**
* @package Make
*/
?><!DOCTYPE html>
<!–[if lte IE 9]><html class=”no-js IE9 IE” <?php language_attributes(); ?>><![endif]–>
<!–[if gt IE 9]><!–><html class=”no-js” <?php language_attributes(); ?>><!–<![endif]–>
<head>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id=”site-wrapper” class=”site-wrapper”>
<?php ttfmake_maybe_show_site_region( ‘header’ ); ?>
<div id=”site-content” class=”site-content”>
<div class=”container”>
Anyway, it has not been resolved. Any other suggestions?
Thanks.
Jeff
Hi.
I just now did try this code in the CSS:
.site-navigation .menu {
display: none;
and that did remove the navigation ok but it is also hiding part of my header image. The “@media screen and (min-width: 800px)” added to it as suggested above did not remove the nav. Just fyi…
Try this…
.site-navigation .menu {
visibility: hidden !important;
}
Awesome, Rajesh! Worked perfectly!
Thank you.
Jeff
You’re welcome. Glad I could be of help.
Cheers!