Hi,
Sorry about that. I tested a new approach that is working.
Please open up header.php and find lines 98-110 that look like
######################################################################
if (isset($k_option['general']['logo']) && $k_option['general']['logo'] != '')
{
$logo = '<img class="ie6fix" src="'.$k_option['general']['logo'] .'" alt="'.get_settings('home').'" />';
$logoclass = 'logoimg';
}
else // default logo
{
$logo = get_bloginfo('name');
$logoclass = 'logobg2';
}
######################################################################
and in their place paste the code below.
######################################################################
//if (isset($k_option['general']['logo']) && $k_option['general']['logo'] != '')
//{
// $logo = '<img class="ie6fix" src="'.$k_option['general']['logo'] .'" alt="'.get_settings('home').'" />';
// $logoclass = 'logoimg';
//}
//else // default logo
//{
// $logo = get_bloginfo('name');
// $logoclass = 'logobg2';
//}
######################################################################
Since you know the name of the site, it would be easier to hardcode it and save that extra couple of database connections every time any page in the website loads. now in the same file (header.php) find line 125 that looks like
<h2 class="logo <?php echo $logoclass; ?>"><a class='ie6fix' href="<?php echo get_settings('home'); ?>/"><?php echo $logo; ?></a></h2>
and replace it with the line below (just change $$$$$$$$ to whatever you want to show up as the title (no quotes needed.) Leave the html as is , unless you want the problems you said you had.
<h1 class="logo logobg2"><a class='ie6fix' href="<?php echo get_settings('home'); ?>/">$$$$$$$</a></h1>
Final step is to find line 93 in the same file (header.php) which looks llike
</head>
do not delete line 93, instead paste the code below *before line 93*
<style>
#top .logo a {
text-indent: 1px !important;
font-size:1.9em !important;
font-weight:bold !important;
color:red !important;
}
#top .logo a:hover {
color:blue !important;
}
</style>
I gave you a rollover, so you can change the color however you want, http://www.clipular.com/c?5715098=gtqTxtQ5txa4NyfniRyj3WFnTwQ&f=.png
Thanks,
Nick