My b2evolution Version: 1.9.x
I can't find this answer anywhere so sorry if I'm asking something that's already been asked.
I want the header of my blog (it's just text - no icon/banner or anything) to link to the main page of my site but haven't a clue how to do it. Can someone advise?
Thank you in advance.
Hallo!
You can change these things in the _main.php of your skin. Often the header section is under the first <body> tag.
e.g. in the "custom" skin:
Below the <body> tag you see first the include of the bloglist and than the div section of the header. In this example, the PageTitle <?php $Blog->disp( 'name', 'htmlbody' ) ?> is alredy a hyperlink because of the <a href="<?php $Blog->disp( 'url', 'raw' ) ?>"> befor and </a> after the PageTitle. You could change the URL of the link by replacing the <?php $Blog->disp( 'url', 'raw' ) ?> with http://yourdomain.tld
So in this example the header section would look like this:
nureac