A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.
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
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.
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.
wrap your logo inside a link like <a href='<%= Page.ResolveUrl("~/") %>'><img src='yourlogogpath.png' /></a>