Topic: title in top of browser

I want to change the title pun displays in my browswer, where is the code located please?
Will it change for all sections of pun; index, admin etc?

Re: title in top of browser

check header.php and look for <title>

Re: title in top of browser

I see there a variable for this, where can I change it's value?

Re: title in top of browser

when I say variable I mean: $page_title

<title><?php echo $page_title ?></title>

Re: title in top of browser

$page_title is set individually on each page. For example, viewtopic.php concatenates the board title, " / ", and the topic title to set the value of $page_title (which is echoed between title tags by header.php).

Looking for a certain modification for your forum? Please take a look here before posting.

6 (edited by kairi 2007-01-04 02:13)

Re: title in top of browser

Something along these lines:

<title><?php echo $page_title ?> - "Your text here"</title>

If you are to add to your original title*