Hello, My live search bar is showing the elements behind other elements on the page, how can I fix this?
If for example you type in float and wait a few secconds but do not hit enter, product results come up behind other page elements.
website haspools.com
Hey edgeofcinema,
Thank you for the inquiry.
You can add this css code to adjust the stack order of the column containing the search field and place it in front of the other columns.
.flex_column_table.av-6wpc-40111567c38aae6daa72a4fc72cec859 {
z-index: 99999;
position: relative;
}
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
Ismael
Great that worked, thanks!
Now how do I make the mobile site show two columns?
I tried this but it still breaks down to one column on mobile.
@media only screen and (max-width: 330px) {
.products-grid .product, .products-list .product {
width: 50%;
}
}