Hello @nicholaspanetta,
It seems that you have added custom code for the mobile menu icon and the font size of the mobile icon is been set as 1px just because it is not displaying. Please have a look at the given screenshot below.
I would suggest you please remove the custom CSS code from the Theme option or for the quick fix please use this code.
@media (max-width: 978.98px){
.x-btn-navbar, .x-btn-navbar.collapsed {
font-size: 25px;
}
}
In case if you want to hide the mobile menu and align the logo to be centered please use this code under Theme Option —>CSS
@media (max-width: 978.98px){
.masthead-inline .x-btn-navbar {
display: none;
}
.x-brand {
display: block;
float: none;
text-decoration: none;
width: 100%;
margin: 0 auto;
text-align: center;
}
}
The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector or you can subscribe to One to get further assistance.
Hope it helps.
Thanks