Hi I'm new to this so please forgive me if this is a totally newb request..

i like this theme and try 2 customize it for my personal use - so here is my issue:

how can i change the position of the logo?

by default its just a little spark above the banner -
when you roll over it there's a link to the home -what is a very nice thing - so what I want is to have it right on the banner so it fits in my banner design :-)

where can i do this ( in the csc file?)

and how?

thx for this lovely theme - keep it up

runnie

ps:
i already replaced it with my own logo img - this worked

Comments

runnie’s picture

Assigned: runnie » Unassigned
Leeteq’s picture

Category: task » support

Possibly in the page.tpl.php file. (I havent had a look at it)

vito_a’s picture

That all depends on the theme used. If you are using something like Garland theme then yes, the style.css (a .css, not csc) file and change the #wrapper #container #header #logo-floater attributes a bit.

However you've got a good advice already - you can look at your page.tpl.php template to get the exact details of how the logo is placed at your theme ( you can learn which theme is used now from the /admin/build/themes , it's set as default there ).

Alan Cooney’s picture

Status: Active » Fixed

This is the code that you want to move around:

<?php if ($logo) { ?>
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
<img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" />
</a>
<?php } ?>
Alan Cooney’s picture

Status: Fixed » Closed (fixed)