I also adapted the black pearl style to it.
It would be great if you share shoutbox template files for other users who may need them.
Thanks.

Well as i don't know really where to post this. I insert it here
The following changes can be done to include the AJAX-Shoutbox to the bottom of your PHPBB3 forum.
Look at the following steps.
BTW you should consider the installation steps to integrate the AJAX Shoutbox to your forum -> click
here.
This should be done before the following changes of Black Pearl Template...
OPEN
<phpBB3 dir>/styles/black_pearl/template/overall_footer.html
FIND
<div style="text-align:center;">
<!-- IF U_ACP -->
<br />
<br />
<span class="gensmall">
[ <a href="{U_ACP}">{L_ACP}</a> ]
</span><br /
><br />
<!-- ENDIF --></div>
<!-- IF not S_IS_BOT -->
{RUN_CRON_TASK}
<!-- ENDIF -->
</div>
ADD BEFORE
<div id="shoutbox_h" style="display:none;">
<div>
<div class="tbl-h-l">
<div class="tbl-h-r">
<div class="tbl-h-c">
<img style="padding-top:9px;padding-right:6px;float:right;cursor:pointer;"
src="./styles/black_pearl/theme/images/icon_minimize.gif"
onclick="javascript:ShowHide('shoutbox_nh','shoutbox_h','shoutbox_nh');"
alt="Shoutbox" />
<div class="tbl-title">
<h4>
Shoutbox
</h4>
</div>
</div>
</div>
</div>
<table class="tablebg" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="row1">
<span class="gensmall"> </span>
</td>
</tr>
</table>
<div class="tbl-f-l">
<div class="tbl-f-r">
<div class="tbl-f-c"> </div>
</div>
</div>
</div>
</div>
<div id="shoutbox_nh">
<script type="text/javascript">
<!--
tmp = 'shoutbox';
if(GetCookie(tmp) == '2')
{
ShowHide('shoutbox_nh', 'shoutbox_h', 'shoutbox_nh');
}
//-->
</script>
<div>
<div class="tbl-h-l">
<div class="tbl-h-r">
<div class="tbl-h-c">
<img style="padding-top:9px;padding-right:6px;float:right;cursor:pointer;"
src="./styles/black_pearl/theme/images/icon_minimize.gif"
onclick="javascript:ShowHide('shoutbox_nh','shoutbox_h','shoutbox_nh');"
alt="Shoutbox" />
<div class="tbl-title">
<h4>
Shoutbox
</h4>
</div>
</div>
</div>
</div>
<table class="tablebg" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td>
<!-- IF not S_IS_BOT -->
<div style="font-size:1.2em; margin-bottom:20px;">
{SHOUTBOX}
</div>
<!-- ELSE -->
<div id="ajaxChatCopyright">
<a href="https://blueimp.net/ajax/">AJAX Chat</a> © <a href="https://blueimp.net">blueimp.net</a>
</div>
<!-- ENDIF -->
</td>
</tr>
</table>
<div class="tbl-f-l">
<div class="tbl-f-r">
<div class="tbl-f-c"> </div>
</div>
</div>
</div>
</div>
That should be all, it works
Much fun and luck for your own trials...
edit: shoutbox code changed. previous one was not correct!