Your Portal Version: 1.0.0RC3
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Beginner
What have you done before the problem was there?
What have you already tryed to solve the problem?
Description and Message
Ok now, mark/kevin, Im gonna need you here
I added the shoutbox in the portal and it looks like this
It don't look pretty good so I did some changes to make it look good. but I ended up like this.
So how can I make a proper block for shoutbox?
Ajax shoutbox block for prosilver
Forum rules
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Re: Ajax shoutbox block for prosilver
can you post the code for the block that you have inserted - would help a bit.
It seems from now on a problem with the style for the shout box or a minor coding fault...
It seems from now on a problem with the style for the shout box or a minor coding fault...
Re: Ajax shoutbox block for prosilver
Code: Select all
<div class="forabg">
<div class="inner">
<span class="corners-top"><span></span></span>
<ul class="topiclist">
<li class="header">
<dl>
<dt>Shoutbox</dt>
</dl>
</li>
</ul>
<ul class="topiclist forums">
<li>
<dl>
<dd>{SHOUTBOX}</dd>
</dl>
</li>
</ul>
<span class="corners-bottom"><span></span></span>
</div>
</div>
Hmm... this is my code
Re: Ajax shoutbox block for prosilver
I tried addin this to custom block but its not working,
Anyone? Can't I use the custom block?
Code: Select all
<!-- 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 -->
Re: Ajax shoutbox block for prosilver
I am not sure if it will work as i don't have this style running but can you try to test this one:
Do you have added the style sheet definitions for the ajax shoutbox to the style sheet from your forum theme?
Code: Select all
<div class="forabg">
<div class="inner"><span class="corners-top"><span></span></span>
<ul class="topiclist">
<li class="header">
<dl class="icon">
<dt>Shoutbox</dt>
</dl>
</li>
</ul>
<ul class="topiclist forums">
<li class="row">
<dl class="icon">
<dt title="No new posts"></dt>
<dd>
<!-- IF not S_IS_BOT -->
<div style="font-size:1.2em;">
{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 -->
</dd>
</dl>
</li>
</ul>
<span class="corners-bottom"><span></span></span></div>
</div>