If you have a WooCommerce store using the popular Storefront theme, you can add a simple tagline beneath your logo using the ::after pseudo-element.
.custom-logo-link::after {
color: #333;
content: "award winning jeweller, writer and broadcaster";
display: block;
font: 400 1rem 'Oswald', sans-serif;
margin-top: 1rem;
text-transform: uppercase;
}
This approach isn’t particularly SEO-friendly, since search engines don’t interpret content added via CSS. However, it’s a neat and lightweight way to visually combine a logo and tagline without modifying your theme templates.
