Is there a way to add a logo to this theme? I want to instead of having the Site Name with text to have a jpeg that links to the home page at that same location. Is this something that I have to change the core code? If so how do I do that, or how can that Logo display can be added?

I'm a new user, the more specific the better. Thanks!!

Comments

Anonymous’s picture

Assigned: Unassigned »

BJ,

Sorry I haven't been able to get back to you on this. I'm at DrupalCon this week and the network connection is flaky.

Yes, you can do this.

To add your logo, go to your site's theme configuration page:
admin/build/themes/settings

On this page, you will be able to upload a logo image.

To make the title text disappear, you will need to edit the file style.css. Note that you will have to make this change whenever you download a new version of the theme.

Look for this block of code in style.css (should be around line 163 or so):

#header #headerTitle #title-wrapper h1 {
    display: block;
    line-height: 1em;
    margin: 0 0 10px 0;
    padding: 0;
    vertical-align: middle;
}

Change that block to look like this:

#header #headerTitle #title-wrapper h1 {
    display: none;
}
Anonymous’s picture

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

I went to:

admin/build/themes/settings

and added the logo. however it did not show. it was not until I updated the newer version of Nitobe that it actually showed. Thanks

bzsim’s picture

Can I change the color of the diagonal striped background?