I'd suggest if you haven't went too far, to completely reinstall wordpress with your new theme, from scratch.
<title>Whatever</title> - These are title tags, they only give the actual page title.
<h6>Whatever</h6> - These are probably NOT the "title" you are looking for. I believe you're looking to edit the Name of the blog that is displayed at the top of most themes. Most likely this will be located inside of <h1>Blog Name</h1> tags.
The easiest way for editing this stuff is by editing the style.css file. If you are trying to do this through the wordpress admin panel, you must realize that the files must not be read-only or else the changes won't save.
If you want to float a div to the left or right, you can use:
.divname {
float:right;
}
or
.divname {
float:left;
}
If you don't want to do it that way, you can find the header tags (<h1></h1>) that contain the blog name and do this:
Change from:
<h1><?php bloginfo('name'); ?></h1>
to:
<h1><span style="float:left;"><?php bloginfo('name'); ?></span></h1>
This should override the style.css and use the style specified in the span.
<title>Whatever</title> - These are title tags, they only give the actual page title.
<h6>Whatever</h6> - These are probably NOT the "title" you are looking for. I believe you're looking to edit the Name of the blog that is displayed at the top of most themes. Most likely this will be located inside of <h1>Blog Name</h1> tags.
The easiest way for editing this stuff is by editing the style.css file. If you are trying to do this through the wordpress admin panel, you must realize that the files must not be read-only or else the changes won't save.
If you want to float a div to the left or right, you can use:
.divname {
float:right;
}
or
.divname {
float:left;
}
If you don't want to do it that way, you can find the header tags (<h1></h1>) that contain the blog name and do this:
Change from:
<h1><?php bloginfo('name'); ?></h1>
to:
<h1><span style="float:left;"><?php bloginfo('name'); ?></span></h1>
This should override the style.css and use the style specified in the span.