Somehow when I write the description of my theme it cuts the sentence half-way through,
"Pray you, love,
Remember"
Instead of
"Pray you, love, remember"
This is the CSS I found related to this.
#description {
height: 55px;
width: 100%;
overflow: none;
line-height: 1.2;
display: flex;
display: -webkit-flex;
align-items: center;
}
#description > p {
margin: auto;
}
Entire HTML here
Thank you guys so much! Sorry it's such a trivial question but I just can't seem to figure it out.
You either need to implicitly set a break point in the HTML using < br / > when you want the newline to start, or you can do one of the following: