Okay, let’s start over. The Edit User > Profile isn’t a place to but design code or styles. The results are generated through the use of template tags within the template files in your WordPress Theme.
For example, if you are trying to style the name of the site, you look in the Theme folder of the Theme you are using and open the header.php
file.
Look for a tag that looks like this:
<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
These tags generate a link to your home page (url), and post the “name” of the site within an H1 tag. If you want to style the H1 tag, you open up the style.css
file in the same folder and look for H1 and change that information’s font size to whatever you want.
Are we now on the right track?