This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Just bought – confused set up

#36984
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

1. That might be the container width, as well as a margin/padding on the container element. Without actually seeing that, I can’t tell unfortunately.
n) You can perhaps try something like:

.asp_w_container {
    background: white;
}

5.
a) I believe you are looking to turn off this option. By default, the plugin shows the context of the search keyword.
b) & c) – Please check the linked documentation. It explains how to display custom HTML, custom text and custom taxonomy terms (like categories within the results. In your case, something like this would get you close to the layout you want:

{descriptionfield}<br><br>
<p>Categories: <strong>{__tax_category}</strong></p><br>
<a href='{__link}'>Read more</a>

6. Make sure to turn off the slider here: https://i.imgur.com/14EFALS.png
b) In addition to the previous custom CSS, add this as well:

@media only screen and (max-width: 600px) {
    .asp_r .resdrg {
     grid-template-columns: 1fr 1fr; 
    }
}

This may not work in all cases though.