Hi there,
I’ve added a tagline after my site name using -
.x-brand.text:after {
content: “We travel. We like beer”;
display:block;
font-size: 10px;
color: #ccc;
}
I’d like to be able insert several spaces or a tab before the tagline.
Hi there,
I’ve added a tagline after my site name using -
.x-brand.text:after {
content: “We travel. We like beer”;
display:block;
font-size: 10px;
color: #ccc;
}
I’d like to be able insert several spaces or a tab before the tagline.
Hi @theresaladner,
Please update your custom CSS to this:
.x-brand.text:after {
content: "We travel. We like beer";
display:block;
font-size: 10px;
color: #ccc;
margin-top: 15px;
}
Let us know how it goes!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.