Good free template

Twisted Fairytale said:
You have a pretty good one, just need a banner.

Lots of people, and I agree, say it doesn't match the site. I'll have a look at those templates spyka and see if there are any good ones.
 
You already have one that matches... you just have to use it 😉 Making a web template out of a phpBB3 style is very simple, all the CSS and images are already there, all you have to do is put it together.

This hasn't been checked for XHTML validity though..
 
haven't had a look at bond's download but have a look at this:

http://www.phpbb.com/kb/article/add-a-n ... 810a6eac5e

To keep users logged in when they go back to the homepage open includes/functions.php

Find:
Code:
'U_INDEX'				=> append_sid("{$phpbb_root_path}index.$phpEx"),

Before, Add:
Code:
'U_HOME'				=> append_sid("{$phpbb_root_path}yourpage.$phpEx"),

Then you can add this to overall_header or another template file...
Code:
<a href="{U_HOME}" title="Homepage">Home</a>

^ will keep the session alive.
 
That is only if sbfc93 integrated his site around phpBB3, which it doesn't look like he is doing, and if he does, he doesn't need to worry about a web template as he can just use the phpBB3 style then using phpBB3's template engine.
 
Zyenet said:

I'm not surprised seeing as this page is not valid... http://validator.w3.org/check?verbose=1 ... 2Fforum%2F which is where the source came from..

Edit: I added an updated version which is XHTML 1.0 strict valid except for this:
Code:
<a href="http://forumresources.net/"><div style="height: 165px;"></div></a>
You can't have a div inside of an a tag. I don't have the time or patience right know to create a valid alternative too.
 
Back
Top Bottom