How to remove this bar in Generatepress theme?

Zakch93

Elite Member
Joined
Mar 7, 2020
Messages
2,307
Reaction score
855
The bar is circled in red. What is it, where do I access it's configuration, how to disable it?

Screenshot (7)red.png
 
The bar is selected in inspect element in the screenshot.

"add Display: non;"

Where do I put the link in this? And link like this: "<div id=xxx /div>" or should be URL?
 
The bar is selected in inspect element in the screenshot.

"add Display: non;"

Where do I put the link in this? And link like this: "<div id=xxx /div>" or should be URL?
Add this CSS to your page:

#mobile-header {
display: none;
}

or

.inside-navigation {
display: none;
}

You should be able to add your own CSS in the Wordpress Customizer or in the theme settings.
 
Back
Top