Jump to content

Chinese symbols in mobile Top Menu Bar


Recommended Posts

Hi seams you changed font for that simbol. You have in themes/default-bootstrap/css/modules/blocktopmenu/css/superfish-modified.css line 55

.sf-menu > li span:after {
    font-family: "Corbel";
    content: "\f067";
    font-size: 26px;
}

but that is wrog font and it displays those letters. So use this instead

.sf-menu > li span:after {
    font-family: "FontAwesome";
    content: "\f067";
    font-size: 26px;
}

Also if I may to suggest try this in same file line 44

.sf-menu > li {
    float: none;
    position: relative;
    border-right: none;
    width: 100%;
}

to have each category in one row.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...