Hello, Do you have any idea why my menu icon does not appear in Google Chrome even though it is present in Wappler?
THANKS
Hello, Do you have any idea why my menu icon does not appear in Google Chrome even though it is present in Wappler?
THANKS
I see a CORS issue on your page. In your CSS you are loading the font like:
@import url('https://www.incaps.io/assets/images/flaticon/566000-navigation/font/flaticon.css')
a full url with www
, but you are loading the actual site without the www
part, so this generates the CORS error you can see in the console.
In your style.css change the font import to:
@import url('/assets/images/flaticon/566000-navigation/font/flaticon.css')
this should fix the issue.
Thanks