Header and breadcrumbs are not linked

CMSimple 4.0 und höher
Post Reply
sogen
Posts: 12
Joined: Mon 17. Dec 2012, 16:01

Header and breadcrumbs are not linked

Post 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
Gert
Posts: 2075
Joined: Sun 18. Nov 2012, 14:18

Re: Header and breadcrumbs are not linked

Post 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
Gert Ebersbach | CMSimple | Templates - Plugins - Services
sogen
Posts: 12
Joined: Mon 17. Dec 2012, 16:01

Re: Header and breadcrumbs are not linked

Post by sogen »

great! Thanks :D
Post Reply