I am having issues with sites (this will be the third one now) that is having issues with CSS styles crossing over. The latest store is a true dev so I can't show you what I'm seeing. Because I had had issues with another changing the Framework of branch to Shadows 10.05 from a custom Framework (it had CSS conflicts all over the place) I went back to it and created a branch with Shadows 10.04, then applied Shadows 10.05 to it. That seemed to solve the problem with the second store. Now this dev site had Shadows 10.04 which I have chugging along building a new look & feel in. It was not a fresh install but a copy of the live site which had been built using the Base ReadyTheme. There were no issues with the Shadows 10.04 branch so I created a new branch from it and applied Shadows 10.05 to it. Now the CSS from Shadows 10.05 is showing up in the Production branch display. It's really easy to tell that it's CSS from Shadows 10.05 because it's using the grid-template-columns.
This is not the correct CSS for Shadows 10.04
[CODE].x-product-list {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.x-product-list, .x-subcategory-list {
display: grid;
gap: calc(var(--default-spacing-unit) * 2);}/CODE]
I'm going to have to request that support do a roll back to restore everything to what it was. This is my third encounter with CSS issues.
This is not the correct CSS for Shadows 10.04
[CODE].x-product-list {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.x-product-list, .x-subcategory-list {
display: grid;
gap: calc(var(--default-spacing-unit) * 2);}/CODE]
I'm going to have to request that support do a roll back to restore everything to what it was. This is my third encounter with CSS issues.
Comment