GeoDirectory SupportCustomizing the style of the category subwindow – GeoDirectory Support https://wpgeodirectory.com/support/topic/customizing-the-style-of-the-category-subwindow/feed Sun, 05 Apr 2026 23:32:07 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/customizing-the-style-of-the-category-subwindow/#post-39724 <![CDATA[Customizing the style of the category subwindow]]> https://wpgeodirectory.com/support/topic/customizing-the-style-of-the-category-subwindow/#post-39724 Sun, 17 May 2015 00:45:28 +0000 terrencehill Hola!

How can I customize the Category Subwindow that overlays the Map?

I would like to:
– Disable the Search field (Title) in it
– Make it larger in width, so that Long category titles fit
– Change the opacity to almost fully dark (almost no transparency)

Thanks!

Sincerely
Th

]]>
https://wpgeodirectory.com/support/topic/customizing-the-style-of-the-category-subwindow/#post-39737 <![CDATA[Reply To: Customizing the style of the category subwindow]]> https://wpgeodirectory.com/support/topic/customizing-the-style-of-the-category-subwindow/#post-39737 Sun, 17 May 2015 11:18:05 +0000 Simone hi add the following in the css:,
for the search field


.map_category input[type="text"] {
display:none;
}

to make it wide, it should be dynamic based o the length of the category name, but if you want to force it, add this


.map_category {
width: 250px; 
}

or any other value in px

to change the opacity:

add this


.map_category {
background:#000 !important;
}

that’s back, change it using your favorite color.

]]>