How can I add text in the header section above and bottom of the logo

like this one

Go to Online store > Themes > Edit code > Assets > base.css, add this code at the bottom

.header__heading { 
    display: flex; 
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center; 
}
.header__heading::before { 
    content: "text above"; 
    padding-bottom: 0.75rem; 
} 
.header__heading::after { 
   content: "text below"; 
   padding-top: 0.75rem; 
}
.header__heading::before,
.header__heading:: after { font-size: 18px; }

Replace “text above” and “text below” with your text.

@niceeee Add one text here above the sticky header logo in header.liquid file

add one text here below of the if condition

so it will be look like below image :

How do you do the same but have text to the right of the logo?

Like below:

My Site:

https://ec6bc3-2.myshopify.com/

pw

eawhup