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.