Aligning Store Name Onto One Line (UPDATED)

Hi,

One possible way would be to remove the padding and reduce the font size of the name, for mobile phones, like below:

@media (max-width:768px) {
.header__heading-link {
  padding: 0;
}
.header__heading-link span.h2 {
  font-size: 24px;
}
}

Adding the above code at the end of your ‘base.css’ file should do the job.

Let me know if this was of help.

Kind regards,

Gabriel