phpbb help with forum title

Zenith

Paragon
Joined
Dec 7, 2008
Messages
1,363
Reaction score
0
FP$
6
Hey,
my board link is http://pokechamps.net/
and right below my banner is my forum title I want it removed but when I remove it the site title in the browser just has . Index Page
 
Seriously, How come it doesn't say Ficton Lovers under your banner?
 
Oh i know how to get rid of it.

ACP > Board Settings > Erase what is in the Site Name and Description
 
Yeah but when I get rid of it doesn't show the forum title in the browser.
 
Go to overall_header.html

Then find:

Code:
			<div id="site-description">
				<a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
				<h1>{SITENAME}</h1>
				<p>{SITE_DESCRIPTION}</p>
				<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
			</div>

And replace with:

Code:
			<div id="site-description">
				<a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
				<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
			</div>
 
Zenith just follow the steps provided by death, as he has said them is exactly as you need to do.
 
To be a bit more detailed, the file is /styles/your_style/template/overall_header.html. 🙂
 
Back
Top Bottom