[Answer]-How to reload CSS after ajax call

1👍

Try adding the following css:

li {
    list-style-type: none;
}

If that works, then your css selector .product_list is just incorrect and you’ll need to specify it in a way that catches all of the li’s.

0👍

I had same problem and found only solution to put CSS styles inline in loaded tags.

This is not best practice, but worked for me.

👤zur4ik

Leave a comment