Clyde,
I've just installed Comstock and want to straighten out the logo and the tagline. The only changes made to the default stylesheet were the background colors for the #logowrapper and #navaccountwrapper declarations and the height adjustment for the tagline in the #taglinewrapper declaration. The logo px size has been changed in header.php to reflect the size of the logo.

I have adjusted the #taglinewrapper to the following to move the tagline to the left and down:

Code:
#taglineWrapper {
	margin: 0;
position: absolute;
top: 45px;
left: 5px;
	width: 360px;
}
from the original default of:

Code:
#taglineWrapper {
	margin: 0;
position: absolute;
top: 20px;
left: 250px;
	width: 360px;	
}
At this point I'd like to adjust the logo down and centered to line up with the tagline (the tagline being centered with the logo vertically). I was able to get the tagline in the position I wanted vertically by adjusting the top: declaration but not the logo, after many tries of making adjustments in the #logowrapper declaration. I tried adding the top: declaration in #logowrapper but it failed to work.

Also, I'd like to change the font size in the tagline to be slightly larger but was also unsuccessful there. Tried 3em and 2.5em but the font remained the same size. No doubt there's something I'm overlooking or am not aware of. Your default code is:

Code:
#tagline {
	padding-top:10px;
	color:#000;
	font-size: 2em;
	font-weight: bold;
	text-align : center;
	vertical-align: middle;
	line-height:normal;
	}
My store site is: http://www.earnest-enterprises.com

Thanks for being such a great supporter of your template. It IS appreciated.

Rod