toonetcreation
Got your point, you can try with this tweak in LESS files:
Open file: /templates/ja_mixstore/less/variables.less
At line 298, change:
// Point at which the navbar stops collapsing
@grid-float-breakpoint: @screen-md-min;
to:
// Point at which the navbar stops collapsing
@grid-float-breakpoint: 1331px;
Go to file: /templates/ja_mixstore/less/navbar.less
Line 28:
// Navbar heading
// --------------
.navbar-header {
@media (min-width: @grid-float-breakpoint) {
}
}
change to:
// Navbar heading
// --------------
.navbar-header {
display: inline-block !important;
@media (min-width: @grid-float-breakpoint) {
display: none !important;
}
}
As I can see that Development Mode is OFF now, so you will need to compile LESS to CSS after changing in less files above. Navigate to Backend > Extensions > Templates > JA Mixstore > hit the compile less button: http://prntscr.com/o7s7cd
But before compiling, take backup of all current CSS files first as this process will override all current css files (except for 'custom.css' file).
Regards