What theme are you using? Can you post a link to your site?
The theme is Eventbrite Venue. The website is http://regintelassoc.com. I would like to change the size of the font in the header. Do you know how?
If your theme has a built-in custom CSS option, use it; otherwise, get a custom CSS plugin and try this:
header .logo-text h1 {
font-size: 24px;
}
What code do I add in the CSS for a line break between the header text and tagline? Thanks again!
Can you clarify which two pieces of text you’re referring to?
Regulatory Intelligence Associates, LLC and Research, Advice, Support, Experience (I would like to add a space between these two pieces of text)
header .logo-text h1 {
font-size: 40px;
margin-bottom: 15px;
}
Trying experimenting with different values until you like the look.