Replies: 2
There is a error in the code at line:3 What is it?
syntax error, unexpected ‘.’, expecting end of file
/* Adds an arrow next to menu items with sub menus */
/* You will most likely need to adjust this per site ~~~~~~~~~~~~~~~~~~~~~ */
.fusion-flyout-mobile-menu .menu-item-has-children > a span::after {
content: '\e61f';
display: inline-block;
font-family: icomoon;
font-size: 18px;
width: 18px;
line-height:35px;
color:#fff;
position: static;
margin-left: 1em;
}
/* These will most likely be fine as they are ~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Theis makes it so you can't scroll away from the menu and search icons */
.fusion-flyout-active .fusion-header-has-flyout-menu-content {
position: fixed;
width:calc(100% - 60px);
}
/* This makes the current nav item open by default */
.fusion-flyout-mobile-menu.fusion-mobile-nav-holder .menu-item-has-children.fusion-mobile-current-nav-item .sub-menu {
display: block;
}