Hi, i know that this awesome theme does not support logo but i would highly appreciate if anyone can tell me how to make the banner area clickable, i have seen marinelli's author other website and that one has the banner area clickable. check it out here:
http://www.meteonetwork.it

Comments

pepemty’s picture

Buona giornata, Matteo!

First things first: I love your theme! A lot.

See, Matteo, I belong to a mountaineering club here in Northeastern Mexico and I'm going to move our current site (club-condor.org) from Xoops to Drupal, and in the making give it a serious facelift. Naturally I'm thinking in using your theme.

But, I also want to use a logo, just as madjukebox asked before here --and you already did with meteonet.it.

Is there some hope?

Warm regards from sunny México!
:-)
Pepe

rovo’s picture

Version: 5.x-2.x-dev » 6.x-1.7
Assigned: Unassigned » rovo

I found a way using javascript. Modify your page.tpl.php file in the marinelli folder. Find the Header div tag.

Change it from ,

 <div id="header"> to 

<div id="header" onclick="location.href='http://www.example.com';" style="cursor:pointer;"> 

change www.example.com to your homepage url. Save and upload to server. Should work in any version.

pepemty’s picture

Hmmm...

Looks good to me --and way too simple! LOL!

I'll give it a try tonight.

Thanks a lot, really!

Warm regards from sunny México!

:-)
Pepe

vsr’s picture

This should for for everybody, including people with javascript turned off.. Just put a link around the div.

 <a href="url-to-homepage"><div id="header"> .....</div></a>
vm’s picture

Status: Active » Fixed
Lioz’s picture

beware that you cannot include a block element like a div inside an inline element like the a tag.
Try adding a display:block; property to site title href, and then specify the dimensions, something like

#header h1 a {
display:block;
width:970px;
height:200px;
}
Anonymous’s picture

Status: Fixed » Closed (fixed)

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

dunklea’s picture

What about a multisite site setup? I have four sites and when I edit my themes page.tpl.php file I can only send it to one site, not to each individual home page..

Any ideas?