@SchoonhovenOntwerpStudio, had a moment to look into this just now and I’ve got some feedback for you on the items you mentioned above.
#1
With regards to the color transparency not working, this is as I suspected. It appears you’re using a global color for those slides, and then using the alpha slider to bring in the transparency level you want. This is something I need to document more clearly, but at this time if you plan on using alpha transparency along with your global colors, the global color must be an rgba()
value due to how the parser works to break apart these values. So if you simply go to your global color palette and change your “White” color from #ffffff
to rgba(255, 255, 255, 1)
, you should find that this starts working as you would expect.
#2
With regards to your navigation links not having a cursor when you hover over the icons of the 2nd and 3rd link, this is because you have the <a>
tag turned on for the wrapping Div Element around the Icon and Headline, but you do not have any links in them. Your first item has the <a>
tag on the Div Element turned on and an href
provided, which is why it works. Your 2nd and 3rd only have a link on the nested Headline Element, which is why their sister Icon Elements are not changing to a cursor on hover. If you add an href
to the parent Div Element like the first link, then you will have the behavior you’re after.
Hopefully that helps! Cheers!