Dear @willowj
The Tagline region can be targeted with the following code:
.tagline {
// insert desired CSS here
}
And you can add padding in two different ways, the short hand way:
padding: 0px 20px 0px 20px;
This works on a compass, so North, east, south, west - (or top, right, bottom, left)
north 0px, east 20px, south 0px, west 20px
And long-hand or individual paddings:
Padding-left:20px;
Padding-right: 20px;
Details here:
https://www.w3schools.com/css/css_padding.asp
For example:
.tagline {
padding-bottom:20px;
padding-left:20px;
}
Custom CSS can be added via:
Lay Options > Custom CSS & HTML > Custom CSS
https://laytheme.com/documentation/custom-css-styling.html
Have a wonderful day @willowj š»
Richard