How to format header text in Testament theme?

I am trying to format my header text so that it is small and does not take up lots of rows in the header. Attached are the admin screen shot and then what the customer see’s. It is testament theme but in the Admin there are no formatting options for the text other than a text size slider. It uses double spacing between the rows and is a bit awkward.

Screen Shot Admin:

Header Customer View:

Any help is appreciated.

1 Like
  1. There is a 48pixel line height given to the header. You can override it with a bit of custom code
  2. Go to your CSS file. It would be named something like style.css or app.css or similar
  3. Code files can be found in Online Store > Themes > Actions > Edit Code > Assets
  4. The add the following code
  5. You can change the number 10 to whatever you feel is better.
header {
   line-height: 10px !important;
}

Did this solve your issue?