Viewing 1 reply thread
Viewing 1 reply thread
- You must be logged in to reply to this topic.
Build with IDX Broker › Forums › IDX Broker Control Panel › Custom CSS in Control Panel › Hide Part or all of Results Loading
When you perform a search there is a loading screen display that appears before search results show up. A partially transparent box is displayed with a loading graphic in the center of the page.
I’d like to do one or both of the following:
1) get rid of the transparent box, I assume which would require CSS – possibly display:none or change opacity=1, etc
2) hide the white box and loading graphic in the center of the page, again which I assume is do-able via CSS and a display:none?
What CSS would I need to accomplish these?
This should work for the overlay: .ui-widget-overlay {display: none;}
This will work for the loading box: .ui-dialog {display:none !important;}
If you stop the browser from processing the page you should still be able to use your developer tools to inspect the elements.