Page 1 of 1

Header and breadcrumbs are not linked

Posted: Sat 5. Jan 2013, 19:03
by sogen
Header of the current page and the site name: "Welcome to CMSimpleRealBlog"
are not links.
How to make them clickable? so they can take me home

Thanks

Re: Header and breadcrumbs are not linked

Posted: Sun 6. Jan 2013, 16:10
by Gert
Hi sogen,

you can do it in the template.

If you are using the standard template, you will find following in the template.htm:

Code: Select all

<h1><?php echo sitename()?></h1>
Set a link arround the php:

Code: Select all

<h1><a href="./"><?php echo sitename()?></a></h1>
Maybe you should style the link colors for links in the header after that,

Gert

Re: Header and breadcrumbs are not linked

Posted: Sun 6. Jan 2013, 19:36
by sogen
great! Thanks :D