I was able to style most of the search results elements using simple css font and margin properties. However, some of the elements such as the search heading had html line breaks <br> added. This makes adjusting the spacing more difficult. A workaround was to use css rules such as
div.searchheading br {display: none;},
but it would be much easier if the line breaks were not there.
div.searchheading br {display: none;},
but it would be much easier if the line breaks were not there.
Comment