Table of Contents
Symptom
Add multi-level menu in Shapely theme. It shows square box instead of arrow.
Issue identified
In stylesheet, there is :after style defined. It adds the fontawesome symbol "\f107".
But somehow the file loading got denied.
Fix the issue
Using "Custom CSS & JS" plugin, over-write the :after style:
.dropdown:after {
content: "▼" !important;
}
Result
Comments