Clickable Header?

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
10/6/2010 5:14:59 AM
Gravatar
Total Posts 65

Clickable Header?

Hi,

If I set a site title on my mojoPortal site this title will be visible in the header and will also be clickable. This titel are however just plain text and In our case we have replaced it with a logo in the skin header. This means that the header will not be clickable and the title of the site will not be displayed if you for example use Add bookmark in firefox?

Is there a way to set the title of the site but not show it in the header? And how do we do our logo clickable?

BestRegards
 

10/6/2010 6:05:02 AM
Gravatar
Total Posts 550

Re: Clickable Header?

Hi ,

Showing or hiding  of the site title controls by skin with this css class:

Showing:

h1.siteheading {display:block;}

Hiding:

h1.siteheading {display:none;}

I think you want a thing like I do in samarsoftware.com

Hope it helps

Asad.

 


 

10/6/2010 7:02:14 AM
Gravatar
Total Posts 65

Re: Clickable Header?

Thanks!

That solved the problem, but I still do not know how to make the header clickable? Like on this site where you can click on the mojoPortal logo and get to the first page.

BestRegards

10/6/2010 7:10:24 AM
Gravatar
Total Posts 18439

Re: Clickable Header?

wrap your logo inside a link like <a href='<%= Page.ResolveUrl("~/") %>'><img src='yourlogogpath.png' /></a>

You must sign in to post in the forums. This thread is closed to new posts.