Create a free website
It is currently Sat Jul 31, 2010 12:36 pm

All times are UTC + 2 hours






Post new topic Reply to topic  [ 26 posts ]  Go to page 1, 2  Next
  Previous topic | Next topic 
Author Message
 Post subject: A nice little touch to your forum.......
PostPosted: Sun Apr 29, 2007 12:00 am 
Offline
Support Team
Support Team
User avatar

Joined: Sat Feb 17, 2007 3:55 am
Posts: 803
Location: London
Hi guys...

If you wish to have a : Latest News Trickle going across the top of your forum like this

http://thegoonerforum.phpbb24.com

Then

Go to Administration Panel>>>

Menu phpBB24>>>

Design settings>>>

Content in head>>>

Use this code
Code:
<MARQUEE bgcolor="#DEE3E7" loop="-1" scrollamount="4" width="100%">TYPE IS YOUR NEWS</MARQUEE>


Send>>>>

DONE :wink:

Tips
You can change the background color of your MARQUEE by changing the HTML color code #CCCCCC to the left. The loop determines how many times the words will scroll and is set to -1, which is indefinite. It can be set to whatever you would like. The SCROLLAMOUNT determines the speed your text will scroll.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 29, 2007 11:10 am 
Offline
User avatar

Joined: Tue Mar 13, 2007 7:40 pm
Posts: 129
And if you put this here:
Code:
<table class="forumline" border="0" cellpadding="3" cellspacing="1" width="100%"   height="95px">
  <tbody><tr>
   <td class="catHead" colspan="2" height="28"><span class="cattitle"><center><FONT color=0000CC>Latest News</font color></center></span></td>
  </tr>
  <tr>
   <td class="row1" align="left"><span class="gensmall">

<font size="1">
<b>10/04/2007</b> - Binnenkort op dit forum:
<a href="http://pixelcars.phpbb2.us/viewtopic.php?t=11"> Nieuwe crewleden!</a> Inschrijvingen staan open!
<br>


<b>25/03/2007</b> - 2 uur = 3 uur geworden! Zet daarom je forumklok via je profiel op + 2 uur, als dit nog niet gedaan is.
<br>

</td>

  </tr>
</tbody></table><table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">


you become this:
the text inside you may change:
Image

also design settings, content in head...

_________________
www.pixelcars.phpbb2.us


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 29, 2007 1:59 pm 
Offline
Support Team
Support Team
User avatar

Joined: Sat Feb 17, 2007 3:55 am
Posts: 803
Location: London
You can use the HTML code to embed windows media player on your forum

Code:
<embed type="application/x-mplayer2" src="LINK TO MUSIC HERE" name="MediaPlayer" width=320 height=42></embed>


You just have to supply a link to the music file or a steaming radio station to have it play the music.


Image


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 29, 2007 6:25 pm 
Offline
User avatar

Joined: Tue Mar 13, 2007 7:40 pm
Posts: 129
<marquee scrollamount="2" scrolldelay="5"><font color=red><b>WWW.PIXELCARS.TK is voor geopend verklaard, het is één van de grootste databases ooit! Registreer nu!</b></font></marquee></div>
<br />
Code:
<marquee scrollamount="2" scrolldelay="5"><font color=red><b>WWW.PIXELCARS.TK is voor geopend verklaard, het is één van de grootste databases ooit! Registreer nu!</b></font></marquee></div>
<br />


The red things you change, it's almost the same like above, only here is nothing around the letters..
this was my request but ive found it now..

_________________
www.pixelcars.phpbb2.us


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 18, 2007 1:47 pm 
Offline
User avatar

Joined: Mon May 07, 2007 2:26 am
Posts: 13
Location: Australia
Thanks Gooner!
I've used it on my forum. :)

_________________
Image
Living With Diabetes Forum


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jul 16, 2007 11:47 am 
Offline

Joined: Sun Apr 29, 2007 3:06 am
Posts: 22
Thanks for these. if you have any more little neat tricks for enhancing the forums, they'd certainly be appreciated! :D


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 30, 2007 6:30 pm 
Offline
User avatar

Joined: Tue May 15, 2007 7:31 pm
Posts: 422
Location: Belgium
Code:
<div id="staticbuttons" style="position:absolute;">
<a href="javascript:" onmouseover="myspeed=-thespeed" onmouseout="myspeed=0"><img
src="http://belgiumpixeldesign.phpbb24.com/images/belgiumpixeldesign_phpbb24_com/files/move_up.PNG" border="0"></a><br><br>
<a href="javascript:" onmouseover="myspeed=thespeed" onmouseout="myspeed=0"><img
src="http://belgiumpixeldesign.phpbb24.com/images/belgiumpixeldesign_phpbb24_com/files/move_down.PNG" border="0"></a>
</div>

<script>

var Hoffset=70 //Enter buttons' offset from right edge of window (adjust depending on images width)
var Voffset=80 //Enter buttons' offset from bottom edge of window (adjust depending on images height)
var thespeed=3 //Enter scroll speed in integer (Advised: 1-3)

var ieNOTopera=document.all&&navigator.userAgent.indexOf("Opera")==-1
var myspeed=0

var ieHoffset_extra=document.all? 15 : 0
var cross_obj=document.all? document.all.staticbuttons : document.getElementById? document.getElementById("staticbuttons") : document.staticbuttons

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function positionit(){
var dsocleft=document.all? iecompattest().scrollLeft : pageXOffset
var dsoctop=document.all? iecompattest().scrollTop : pageYOffset
var window_width=ieNOTopera? iecompattest().clientWidth+ieHoffset_extra : window.innerWidth+ieHoffset_extra
var window_height=ieNOTopera? iecompattest().clientHeight : window.innerHeight

if (document.all||document.getElementById){
cross_obj.style.left=parseInt(dsocleft)+parseInt(window_width)-Hoffset+"px"
cross_obj.style.top=dsoctop+parseInt(window_height)-Voffset+"px"
}
else if (document.layers){
cross_obj.left=dsocleft+window_width-Hoffset
cross_obj.top=dsoctop+window_height-Voffset
}
}

function scrollwindow(){
window.scrollBy(0,myspeed)
}

function initializeIT(){
positionit()
if (myspeed!=0){
scrollwindow()
}
}

if (document.all||document.getElementById||document.layers)
setInterval("initializeIT()",20)

</script>

For 2 scrollbars on your forum, if you have guitar tutartubles or something xD

_________________
RIP Sahinler :(


Top
 Profile E-mail  
 
 Post subject:
PostPosted: Tue Oct 30, 2007 9:14 pm 
Offline
Support Team
Support Team
User avatar

Joined: Sat Feb 17, 2007 3:55 am
Posts: 803
Location: London
Were do you add this mate? And whats it for? :oops:

_________________
In Getforum We Trust"


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 30, 2007 11:00 pm 
Offline
User avatar

Joined: Thu Oct 19, 2006 12:30 am
Posts: 101
Gooner you can add the code under "design settings - content in head".

And this script replaces the window's default scrollbars in scrolling the page. It also allows you to custom the images as you wish, and the page will go up or down as you put the mouse on top of the images.
You can see it on my forum

_________________
Forum : http://friends4ever.phpbb24.com
Website: http://support.getforum.org/website.php?id=95


Last edited by isa on Tue Oct 30, 2007 11:01 pm, edited 1 time in total.

Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 30, 2007 11:01 pm 
Offline
User avatar

Joined: Tue May 15, 2007 7:31 pm
Posts: 422
Location: Belgium
You have to add it here
ACP->Design Settings->Content in foot
And, then you see at the right of your forum two things a ^ and a ^ that goes down :)
it's good for guitar taturtables or something :)
it let you goes automatic down, so you can play it while you see it :)

_________________
RIP Sahinler :(


Top
 Profile E-mail  
 
 Post subject:
PostPosted: Wed Oct 31, 2007 2:31 am 
Offline
Support Team
Support Team
User avatar

Joined: Sat Feb 17, 2007 3:55 am
Posts: 803
Location: London
Sorry gents im baffled to what this is for? :lol:

_________________
In Getforum We Trust"


Top
 Profile  
 
 Post subject:
PostPosted: Wed Oct 31, 2007 2:36 am 
Offline
User avatar

Joined: Thu Oct 19, 2006 12:30 am
Posts: 101
for sluggish people :lol: :lol: that find very difficult to scrolle down or up the page :lol:

_________________
Forum : http://friends4ever.phpbb24.com
Website: http://support.getforum.org/website.php?id=95


Top
 Profile  
 
 Post subject:
PostPosted: Wed Oct 31, 2007 3:30 am 
Offline
Support Team
Support Team
User avatar

Joined: Sat Feb 17, 2007 3:55 am
Posts: 803
Location: London
isa wrote:
for sluggish people :lol: :lol: that find very difficult to scrolle down or up the page :lol:



Ohh yes i see what you mean now...Oh very cool my main man, good work

_________________
In Getforum We Trust"


Top
 Profile  
 
 Post subject:
PostPosted: Wed Oct 31, 2007 12:31 pm 
Offline
User avatar

Joined: Tue May 15, 2007 7:31 pm
Posts: 422
Location: Belgium
Indeed, it's thanks to isa, I only changed the icons :)

_________________
RIP Sahinler :(


Top
 Profile E-mail  
 
 Post subject:
PostPosted: Wed Oct 31, 2007 3:01 pm 
Offline
Programmer
Programmer
User avatar

Joined: Sun Aug 13, 2006 11:19 am
Posts: 2593
This is so good it should be i manuals and howto section.

_________________
Thank's for trusting GetForum.org
Follow us on twitter: http://twitter.com/getwebs
Image
Image


Top
 Profile E-mail  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 26 posts ]  Go to page 1, 2  Next

All times are UTC + 2 hours


Who is online

Users browsing this forum: Google Adsense [Bot], Yahoo [Bot] and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to: