For some reason it just would not work in the custom.css.
Custom CSS is not a file, it is a panel in Customiz’it that allows you to enter CSS without a stylesheet in a child theme. It’s not an issue for you now, as you’ve created a child theme, but I thought I’d explain for others.
As to your problem:
The method above is a quick and easy fix for a second line. It will not work with more than two lines.
The solution for a multi-line address in the tagline would be to add the following code to a functions.php file in your child theme’s folder.
// Use filter 'tc_tagline_text' to add extra lines to the tagline (not very advisable, as google is expecting a tagline)
add_filter( 'tc_tagline_text ', 'my_tagline_text' );
function my_tagline_text($html) {
$my2ndLine = '<br /> This is my 2nd line';
$my3rdLine = '<br /> This is my 3rd line';
$my4thLine = '<br /> This is my 4th line';
$html = $html . $my2ndLine . $my3rdLine . $my4thLine;
return $html;
}
Note that this is a bit of a mis-use of the tagline. Search engines will be expecting a pithy phrase that describes who you are / what you do in that “slot”, not an address.
If you haven’t created a functions.php in your child theme yet, then read How to customize the Customizr WordPress theme? first. You should not edit the theme’s own functions.php.