the dropdown link will not show in the block

Your h3 inside your links are floating right, so they are out of the HTML flow so your <a> are displayed as block but with no content.

Just add:

@media (max-width: 767px) {
.brand h3 {
    float:none;
}
}

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top