Posted by rjensen on September 12, 2009 at 7:15am
I want to have Signwriter create the stylized version of the site name and have been getting nowhere.
<div id="site-name"><strong><a href="/" title="Home page" rel="home">my website</a></strong></div>
Your assistance is greatly appreciated!
Roy Jensen
Comments
Got it...
I edited template.php as shown below
// Set variables for the logo and site_name.if (!empty($vars['site_name'])) {
$profile = signwriter_load_profile('Exploring Chemistry');
$image = signwriter_title_convert($vars['site_name'], $profile);
$vars['site_name'] = '<a href="'. $vars['front_page'] .'" title="'. t('Home page') .'" rel="home">'. $image .'</a>';
}
Thanks,
Roy Jensen