Home › Forums › Gillion Theme › Why does gillion make images blurry?
Home › Forums › Gillion Theme › Why does gillion make images blurry?
Please go to the main page and look at the image on the right side that has 2 classic cars on them. The link is included in the private information field. Then look at the photo link separately and see that it is not blurry, but billion makes it blurry home page.
Solution for this topic
Hi @borishar,
I hope you are well today and thank you for your question.
You can resolve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
#page-container .post-thumbnail .sh-ratio-content { background-size: unset; }
Best regards,
Shufflehound team
THANK YOU!!
You are most welcome here š
Used to be the whole image and now because of the above css code the blurriness is gone but the image on mobile does not adjust to proper resolution.
Please change the above-shared CSS code as below.
@media (min-width: 1025px){ #page-container .post-thumbnail .sh-ratio-content { background-size: unset; } }
Please try changing the above-shared CSS code as below.
@media (min-width: 1025px){ #page-container #content .post-thumbnail .sh-ratio-content { background-size: unset; } }
Please try changing it as below.
@media (min-width: 1025px){ #page-container .post-item-single-container .post-thumbnail .sh-ratio-content { background-size: unset; } }