Your install looks fine to me. It has the colors of the forum.
You might want to edit the stylesheet image calls from a relative path
background-image: url(templates/Aeolus/images/bg_cat4.gif);
To a full url so any images called by Photopost will be seen on Photopost.
background-image: url(
http://shaderscafe.com/forums/templa...es/bg_cat4.gif);
Take not also if you have some fancy template sets in phpBB as it seems that one does. You will need to alter your photopost ppopen and ppclose templates to allow for that. Make sure to backup anything in case you mess up. I cant test these as I do not run phpbb but this should work for that stylesheet
Something like this
ppopen would be something like this
<?php
$ppopen = <<<PPPRINT
<table class="{$Style['tablesurround']}" cellpadding="1" cellspacing="1" border="0" width="{$Globals['tablewidth']}" align="center">
<tr>
<td width="23" align="right" valign="bottom"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/top_left.gif" width="23" height="36" border="0" alt="" /></td>
<td width="100%" align="left" valign="middle" background="templates/Aeolus/images/top_center.gif"><table border="0" cellspacing="0" cellpadding="0"><tr><td><img src="http://shaderscafe.com/forums/templates/Aeolus/images/spacer.gif" width="1" height="11" border="0" /></td></tr>
<tr>
<td>
<table cellpadding="2" cellspacing="1" border="0" width="100%" class="{$Style['tableborders']}">
PPPRINT;
$ppopenside = <<<PPPRINT
<table class="{$Style['tablesurround']}" cellpadding="1" cellspacing="1" border="0" width="100%" align="center">
<tr>
<td width="23" align="right" valign="bottom"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/top_left.gif" width="23" height="36" border="0" alt="" /></td>
<td width="100%" align="left" valign="middle" background="templates/Aeolus/images/top_center.gif"><table border="0" cellspacing="0" cellpadding="0"><tr><td><img src="http://shaderscafe.com/forums/templates/Aeolus/images/spacer.gif" width="1" height="11" border="0" /></td></tr>
<tr>
<td>
<table cellpadding="2" cellspacing="1" width="100%" class="{$Style['tableborders']}">
PPPRINT;
?>
ppclose template would be something like this
<?php
$ppclose = <<<PPPRINT
<tr>
<td width="10" align="right" valign="top"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/bottom_left.gif" width="10" height="10" border="0" alt="" /></td>
<td width="100%" background="templates/Aeolus/images/bottom_center.gif"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/spacer.gif" width="1" height="1" border="0" alt="" /></td>
<td width="10" align="left" valign="top"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/bottom_right.gif" width="10" height="10" border="0" alt="" /></td>
</tr>
</table>
</td>
</tr>
</table>
PPPRINT;
$ppcloseside = <<<PPPRINT
<tr>
<td width="10" align="right" valign="top"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/bottom_left.gif" width="10" height="10" border="0" alt="" /></td>
<td width="100%" background="templates/Aeolus/images/bottom_center.gif"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/spacer.gif" width="1" height="1" border="0" alt="" /></td>
<td width="10" align="left" valign="top"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/bottom_right.gif" width="10" height="10" border="0" alt="" /></td>
</tr>
</table>
</td>
</tr>
</table>
PPPRINT;
?>