How to remove refresh button using CSS

0
There is this refresh button on my search bar but I do not want it as it already refreshes automatically. How do I remove it using CSS? The one in-between my new button and search bar
asked
1 answers
0

You can set the CSS (Style) property of the button to display: none;

Or Add style in theme css after identifying the respective classes of elements 

.parent-class .refresh-button-class {

display:none;

}

answered