GeoDirectory SupportRemove "Title or Keyword" box – GeoDirectory Support https://wpgeodirectory.com/support/topic/remove-title-or-keyword-box/feed Sun, 05 Apr 2026 23:41:54 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/remove-title-or-keyword-box/#post-14116 <![CDATA[Remove "Title or Keyword" box]]> https://wpgeodirectory.com/support/topic/remove-title-or-keyword-box/#post-14116 Wed, 03 Sep 2014 06:31:59 +0000 frantletle How do I remove the transparent box that says “Title or Keyword” that hovers over the map on the right?

]]>
https://wpgeodirectory.com/support/topic/remove-title-or-keyword-box/#post-14128 <![CDATA[Reply To: Remove "Title or Keyword" box]]> https://wpgeodirectory.com/support/topic/remove-title-or-keyword-box/#post-14128 Wed, 03 Sep 2014 10:38:24 +0000 Guust Add this code to your child theme’s stylesheet:

.map_category input[type=”text”] {
visibility: hidden;
height: 0px;
}

]]>
https://wpgeodirectory.com/support/topic/remove-title-or-keyword-box/#post-17504 <![CDATA[Reply To: Remove "Title or Keyword" box]]> https://wpgeodirectory.com/support/topic/remove-title-or-keyword-box/#post-17504 Sun, 05 Oct 2014 06:13:00 +0000 frantletle If it helps anyone else, you can also hide each field individually:

E.g. to get rid of the “Search for” box

div.geodir-search input.search_text {
display:none;
}

]]>