Hi communitysu,
are you referring to the site description (tagline) by any chances? If that’s the case, you can easily hide it via the the theme customizer from WordPress: under the Site Title & Tagline uncheck the box for display header text as seen here: https://www.dropbox.com/s/gokvdhtc9wxy96f/radium.jpg?dl=0
I highlighted the option in the screenshot above. Please let me know if this solved your problem.
If however you don’t want any title/logo to be shown by not entering a site title, you must modify your theme’s style.css (or upload a transparent png as your logo).
On line 821, modify the rule for .site-title a to look like this:
.site-title a {
border-bottom: none;
border: none;
color: #fff;
font-weight: normal;
letter-spacing: 4px;
line-height: 1;
padding: 0 10px;
text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
text-transform: uppercase;
}
Please let me know if this solved your problem,