You are here:  » separate every single search result


separate every single search result

Submitted by Tobix on Wed, 2021-07-14 06:42 in

How can I separate every single search result or create a border or dividing line visible only from Desktop?

Submitted by support on Wed, 2021-07-14 08:48

Hi Tobix,

Sure - try adding the following to html/default.css

@media only screen and (min-width:40.063em) {
  .pt_sr_each {
    border-bottom: 1px solid #ccc;
  }
}

...or as required. Don't forget to do a hard refresh (CTRL+F5 in most browsers) after editing CSS to ensure that it is reloaded...

Cheers,
David.
--
PriceTapestry.com

Submitted by Tobix on Thu, 2021-07-15 12:38

Works!