Computer Tips and Tricks | WordPress Technology Hints » PHPBB Tips
how to insert youtube preview videos in a phpbb forum using bbcode
This bbcode will allow phpbb forum members to insert a preview youtube video clip into there posts with a easy button on the post bar. See this post:- PHPBB YouTube BBCODE … Read entire article »
Filed under: PHPBB Tips
Setting up and installing phpBB3
phpBB version 3 is one of the most configurable and functional – yet more importantly free – pieces of forum software on the market today. It is a highly efficient forum board which can be suited and styled to fit the themes of any website out there today. I’m going to discuss the easy way to get one of these forums installed and underway. Deciding the location Where you install your forum is entirely up to you. … Read entire article »
Filed under: Computer Tips and Tricks, PHPBB Tips
25% off WordPress Hosting
andthenhost.com offer cheap WordPress, Joomla and phpBB hosting starting from £1.49 pr month. Packages feature: Windows or Linux hosting Unlimited webspace and bandwidth for £4.99 per month. iPhone on the move control panel – Manage your domain while out and about! Better still – with voucher code APRIL25 you get a further 25% off the Linux Gold and Windows Gold Package Offer expires April 1st so hurry!!! … Read entire article »
Filed under: Computer Tips and Tricks, Featured, PHPBB Tips, Wordpress Tips
PHPBB Forum – How to add AdSense sky scraper banner ads to either side of your forum
This is very easy to apply in 7 easy steps and works perfect with the standard ProSilver template ranges. To see an example see – http://www.catforumchat.com Step:1 open: styles/yourstyle/theme/content.css add at bottom of page add —————————————————————————————————————- Code: Select all Select all .page-sidebarr { float:right; margin-top:0px; width: 10%; } .page-sidebarl { float:left; margin-top:0px; width: 10%; } —————————————————————————————– Step:2 You would have to edit the width variable for tweeking to fit your forum open: style/yourstyle/theme/common.css find —————————————————————————————————————- Code: Select all Select all #wrap { —————————————————————————————————————- change to as follows:- change —————————————————————————————————————- Select all #wrap { padding: 0 10px; margin: 0 auto; width: 75%; min-width: 65%; } —————————————————————————————————————- Step:3 open: styles/your style/template/overall_header.html add right at the bottom of page add <table width="100%" cellpadding="0" border="0"> <tr> <td width="160" valign="top"> <div><!-- INCLUDE sidebarl.html --></div> </td> <td valign="top"> —————————————————————————————————————- Step:4 open: styles/your style/template/overall_footer.html add right at the top of page add —————————————————————————————————————- </div> </td> <td width="160" valign="top"> <div><!-- INCLUDE sidebarr.html --></div> </td> </tr> </table> —————————————————————————————————————- Step:5 now create to standard html files as below and past your add code into the files. sidebarl.html ( left side ) sidebarr.html (right side) Step:6 Now save files into /styles/your style/template Step:7 Now clear your forum cache. … Read entire article »
Filed under: PHPBB Tips