I'm very very new at this - any help would be appreciated...

I want to be have a second logo - ideally controlled the way it is in the Themes->configure->Logo image settings

so i can do something like this:

<?php if ($logo): ?>
           <a href="link1"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo-image" /></a>
<?php endif; ?>
<?php if ($logo2): ?>
            <a href="totalldifferentlink"><img src="<?php print $logo2; ?>" alt="<?php print t('Home'); ?>" id="logo-image" /></a>
<?php endif; ?>

i have the feeling that can't do that...

is there another way i can avoid hard coding that image into the page.tpl.php??

Comments

cmsproducer’s picture

- You can add the second logo provided that you properly define $logo2 in Drupal so that the variable can contain the second logo image.
- Apart form that, you can either add a block region next to the logo and add another image or anything else to appear next to the logo
- You can also use CCK to collect additional values (images, text etc), load them to Drupal using a user-friendly workflow, and then embed the variables anywhere in the template files

dzrobarge’s picture

Oh how I wish I understood! But at least I know that it's possible. I hard coded it in for now and once I get a bit further along will go back to it.

As it stands right now I'm such a newbie that I don't really know how to use blocks well and can barely grasp CCK.

thank you!

cmsproducer’s picture

CCK is harder to understand than blocks, so you are on your way to understanding it all ...
Well when you come back to the issue, do not hesitate to ask for help, we were all newbies at one time!

dzrobarge’s picture

thanks - I will be asking for a lot of help I'm sure!

drk429’s picture

/***
You can add the second logo provided that you properly define $logo2 in Drupal so that the variable can contain the second logo image.

***/

Hey Donny ! Can I know how do we do that ? Where can we define that variable ?

gausarts’s picture

Marinelli theme is a good start to your need.

love, light n laughter