yes of course sorry for not being specific!
So the issue I was trying to fix - I had 4 product images on my home page being displayed side by side on desktop, but on mobile they were stacked on top of each other. So I was given this code so it would display in 2 rows and 2 columns on mobile:
/* Home 2 products row mobile */
@media only screen and (max-width: 768px) {
#block-yui_3_17_2_1_1611892954947_10780 + .row .sqs-col-3 {
width: 50% !important;
float: left !important;
}
#block-yui_3_17_2_1_1611892954947_10780 + .row .sqs-col-3:nth-child(2n+1) {
clear: left !important;
}
}
This code seemed to work perfectly. However I checked my website again a couple days after and it had just reseted to how it was before the code was even put in. Ive tried deleting and re-entering the code and refreshing the page but nothing seems to work.
I'll add some photos of the specific section I'm talking about. Hope this helps.
Cheers!