I like Your theme and I would like to use it, but I do have one problem: I am using my own logo without a site-name inside. So I would like to have the Name of my Site right near the logo like the theme bluemarine. But I don't know, how to do. I think I have to insert code in the page.tpl.php, and I was a little bit successfull. But the site-name is not on the right, but right down the logo.
What do I have to do?

Thanks,

Rolf-Christian

Comments

Remon’s picture

I subscribe

klaasvw’s picture

If you want to use the logo with your site name you'll need to make an image. In the designs folder you'll find psd files in which you can simply edit the text (Drupal).

If you have photoshop this is how to do it:
- Open designs/logo.psd
- Change the Drupal text to whatever you want
- In the menu: File -> save for web (& devices)
- In the save for web window, select the slice tool (the second icon on the left side)
- Click on the slice around the logo
- Use PNG-8 (see the options on the right side of the save for web window)
- Click on the save button
- In the save dialog use these options: Structure: images only, Settings: default settings, Slices: selected slices
Overwrite the logo.png file

Hope this helps :)

klaasvw’s picture

Status: Active » Closed (fixed)
darumaki’s picture

in the drupal 6 version the title text appears to be rasterized, unable to edit.

darumaki’s picture

Status: Closed (fixed) » Active

I too would like to find out how to have just the site name ( text-link ) on the right side above the primary links. I've been looking at the code and can't figure it out. When I get close, the name appears on the logo but can't seem to text-align right to make it move over above the primary links.

mrtoner’s picture

@Rolf-Christian: The problem with getting the site name to appear with the logo is in this line in page.tpl.php:

print ($logo ? '' : $site_title_html) .'</a></h1>';

This displays either the logo (if it is enabled) or the site name. To always display the site name, use this:

print ($logo ? '&nbsp;&nbsp;' . $site_title_html : $site_title_html) .'</a></h1>';

@darumaki: first, it's always best to open a new issue for what is -- really -- a new issue, rather than reopening a non-related, closed issue.

The code above may answer your issue, but I'm not sure. You first say "just the site name," then you say "on the logo." So I don't know if you're disabling the logo or not.

slatvick’s picture

Version: 5.x-1.x-dev » 6.x-1.1
Assigned: Unassigned » slatvick

The approach described at previous comment exactly works.

Thanks very much.

c31ck’s picture

Assigned: slatvick » Unassigned
Status: Active » Fixed

Please reopen if this is still an issue.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.