• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng Dẫn - Cách Đặt Flash Vào Header Và Footer

KingG

New Member
Cách add flash vào header của forum
Các bạn vào admincp> styles & templates> style manager> edit template tìm header template
Tìm đoạn code sau
Code:
PHP Code:
<!-- logo --> < a name = "top" ></ a >< table border = "0" width = " $stylevar [ outertablewidth ] " cellpadding = "0" cellspacing = "0" align = "center" >< tr > < td align = " $stylevar [ left ] " >< a href = " $vboptions [ forumhome ] .php $session [ sessionurl_q ] " >< img src = " $stylevar [ titleimage ] " border = "0" alt = " $vboptions [ bbtitle ] " /></ a ></ td > < td align = " $stylevar [ right ] " > & nbsp ; </ td ></ tr ></ table ><!-- / logo -->
Đây là đoạn code logo của skin mặc định,tùy vào skin bạn đang dùng mà tìm đoạn code logo chophù hợp.Thay đoạn code trên bằng đoạn code sau đây:
PHP Code:
< script type = "text/javascript" src = "http://www.yoursite.com/forum/swfobject.js" > </script> <div id="header" align="center"><script type="text/javascript"> var so = new SWFObject("http://www.yoursite.com/forum/flash/movie.swf","clsid:d27cdb6e-ae6d-11cf-96b8-444553540000", "1000","274", "8", "#000000"); so.addParam("quality", "high"); so.addParam("salign", "t"); so.write("header");</script></div>
Chúng ta để ý:
-1000 : chiều rộng của file flash
-274 : chiều cao của file flash
- 8 : ver tối thiểu của file flash
- #000000 background color
Các bạn điều chỉnh những thông số trên cho phù hợp
Cách add flash vào footer của forum
Các bạn vào admincp> styles & templates> style manager> edit template tìm footer template tìm đoạn code sau,nó ở dưới cùng template
Code:
<!-- // Main vBulletin Javascript Initialization vBulletin_init();//-->
Add thêm đoạn code này vào cuối
PHP Code:
< script type = "text/javascript" src = "http://www.yoursite.com/forum/swfobject.js" > </script> <div id="footer" align="center"><script type="text/javascript"> var so = new SWFObject("http://www.yoursite.com/forum/flash/movie.swf","clsid:d27cdb6e-ae6d-11cf-96b8-444553540000", "1000","382", "8", "#000000"); so.addParam("quality", "high"); so.addParam("salign", "b"); so.write("footer");</script></div>
Chỉnh lại thông số cho phù hợp.
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top