How to create ballons talking text... - Printable Version +- MyBB Codes (http://www.mybbcodes.com) +-- Forum: Mods Database (/forumdisplay.php?fid=4) +--- Forum: Tutorials for 1.4.x (/forumdisplay.php?fid=29) +--- Thread: How to create ballons talking text... (/showthread.php?tid=643) |
How to create ballons talking text... - exdiogene - 12-22-2009 10:18 PM This tutorial will show you how easy it can be to show speech bubbles. The method used is a table with different CSS backgrounds using only two small images. Here is an example of what you can do to display your text : <iframe src="Tutorials/Bubble.html" width="716" height="360"></iframe> Here are the two images used for this example : <div style="background-color:#806000;width:700px; padding:8px;"><img src="Tutorials/Bubble.gif" width="700"> <img src="Tutorials/BubbleCenter.gif" width="700"></div> The CSS content is this : PHP Code:[Highlight] .table_bubble{ The HTML content is this : PHP Code:[Highlight] <table class="table_bubble" cellpadding="0" cellspacing="0"> As you can see this is quite simple to do, the trick is only use a 2 columns 3 rows table! More explanations will come soon... RE: How to create ballons talking text... - Chandy - 03-19-2010 01:57 AM nice tutorial man,ty RE: How to create ballons talking text... - Bane95 - 04-24-2010 02:37 AM very nice, thanks RE: How to create ballons talking text... - pumas09 - 01-18-2011 12:36 AM thanks and nice tut! RE: How to create ballons talking text... - JonP - 01-31-2011 11:33 AM This is cool but where does the html go? RE: How to create ballons talking text... - exdiogene - 01-31-2011 11:43 AM (01-31-2011 11:33 AM)JonP Wrote: This is cool but where does the html go? You can put the HTML in any templates, as an example, use it in the post template to display the $message variable. RE: How to create ballons talking text... - _Un!corn - 08-08-2011 09:13 AM hm.. Nice Tutorial Thanks |