I had created a number of edits throughout the various CSS files associated with PageBuilder plus I was a little lazy and put some of the style in the head tag of the page. Everything was working beautifully until the 10.07 and the introduction of the new CSS resource mmx-customizations
There are two examples in the file which Brennan shared
image_2544.png
I was able to change the font and I was even able to somehow get one of the effects I was creating to halfway work.
I added this
and it works but the other parts of the hover effect do not work anymore
I have tried removing the period, adding a div, and have even placed this in the head tag. It used to work just fine before the update to 10.07. Now even the styles I added to the head tags do not work.
Since I made changes to the 10.06 CSS files why didn't they remain?
If it's just a matter of not using the correct formatting in the new CSS resource mmx-customizations could additional examples be provided so the file will work?
There are two examples in the file which Brennan shared
image_2544.png
I was able to change the font and I was even able to somehow get one of the effects I was creating to halfway work.
I added this
Code:
/* Added for hover effect */ mmx-hero picture[slot="image"]:hover > img {opacity: .5}
Code:
/* Added for hover effect */ .mmx-hero__image-container {background-color: #1abc9c;} .mmx-hero__image-container picture img { opacity: 1; -webkit-transition: .3s ease-in-out; transition: .3s ease-in-out; }
Since I made changes to the 10.06 CSS files why didn't they remain?
If it's just a matter of not using the correct formatting in the new CSS resource mmx-customizations could additional examples be provided so the file will work?
Comment