Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Simple Slide-in Custom Board via CSS Details »»
Simple Slide-in Custom Board via CSS
Version: 2.00, by BCP Hung BCP Hung is offline
Developer Last Online: Jan 2019 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 4.x.x Rating:
Released: 06-15-2011 Last Update: 07-01-2011 Installs: 20
Template Edits
Additional Files Translations  
No support by the author.

About this modification :
This modification allow you make a simple slide-in custom board via CSS. You can create an announcement, warning, advertiment or forum directory (menu).
Browser support (full css properties) :

: margin (with icon), transition, transition-delay.
Install :
  1. Download attachment file, unzip, and upload images folder via FTP.
  2. Insert CSS code to additional.css template :
    AdminCP -> Styles & Templates -> Style Manager -> Edit Templates -> CSS Templates -> additional.css : insert at top or bottom of this template !
    Code:
    /* Slide-in Custom Board - Getamped 1404 */
    #infoPanel  {
        position: fixed;
        background-color: #fff;
        width: 330px;
        height: auto;
        padding: 4px 4px 4px 4px;
        font-size: 12px;
        font-weight: 700;
        color: #000;
        -moz-box-shadow: 0 0 20px #111;
        -webkit-box-shadow: 0 0 20px #111;
        box-shadow: 0 0 20px #111;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        opacity: 0.7;
        -moz-opacity:0.7;
        -khtml-opacity: 0.7;
        filter: alpha(opacity=70);
        -moz-transition: all 4s ease;
        -webkit-transition: all 4s ease;
        -o-transition: all 4s ease;
        transition: all 4s ease;
        -moz-transition-delay: 2s;
        -webkit-transition-delay: 2s;
        -o-transition-delay: 2s;
        transition-delay: 2s;
        left: -300px;
        z-index: 9999;
    }
    #infoPanel:hover {
        -moz-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        opacity: 0.9;
        -moz-opacity:0.9;
        -khtml-opacity: 0.9;
        filter: alpha(opacity=90);
        left: 10px;
    }
    img.infoIcon {
        float: right;
        margin: -20px -20px 0px 0px;
    }
  3. Insert HTML code to navbar template :
    ... -> Edit Templates -> Navigation / Breadcrumb Templates -> navbar : insert to bottom of this template !
    HTML Code:
    <div id="infoPanel"> <!-- Slide-in Custom Board - Getamped 1404 -->
        <img src="images/misc/information.png" class="infoIcon" />
        <table width="100%">
            <tr>
                <td width="90%" style="padding-left:50px;">Announcement ! Announcement !<br />Announcement ! Announcement !</br />Announcement ! Announcement !<br />Announcement ! Announcement !</td>
                <td style="text-align:center;" width="10%">A<br>N<br>N<br>O<br>U<br>N<br>C<br>E<br>M<br>E<br>N<br>T</td>
            </tr>
        </table>
    </div>
  4. Custom for yourself !
    Using your CSS knowledge to do ! Quick guide :
    • Change your location
      1. Show at right :
        In CSS code, search for :
        Code:
            left: -300px;
        
        ... and ...
        
            left: 10px;
        change "left" to "right", and custom your pixel !
      2. Show at left corner :
        In CSS code, search for :
        Code:
            left: -300px;
        
        ... and ...
        
            left: 10px;
        add below with each :
        Code:
            bottom: -160px;
        
        ... and ...
        
            bottom: 10px;
      3. Show at right corner : same left corner, change "left" to "right" !
    • Change your icon : I provide 4 icons in .zip packed to upload, see and choose.
      In HTML code, search for :
      HTML Code:
      <img src="images/misc/information.png" class="infoIcon" />
      Change your icon name !
    • Change your delay time : time when mouse un-hover and slide-in board will be collapse.
      In CSS code, search for :
      Code:
          -moz-transition-delay: 2s;
          -webkit-transition-delay: 2s;
          -o-transition-delay: 2s;
          transition-delay: 2s;
      Change your number with "2", unit is second.
    • Change your width & height : size of slide-in custom board, recommends using the default size if you do not add much to the content.
      In CSS code, search for :
      Code:
          width: 330px;
          height: auto;
      Change it for you !
    • Change your background color : change the background color to match your forum style.
      In CSS code, search for :
      Code:
          background-color: #fff;
      Get more color code at here : http://w3schools.com/html/html_colornames.asp
    • Change your transition time : change your time when mouse hover and un-hover.
      In CSS code, search for :
      Code:
          -moz-transition: all 0.5s ease;
          -webkit-transition: all 0.5s ease;
          -o-transition: all 0.5s ease;
          transition: all 0.5s ease;
      and, when mouse un-hover :
      Code:
          -moz-transition: all 4s ease;
          -webkit-transition: all 4s ease;
          -o-transition: all 4s ease;
          transition: all 4s ease;
      change with your number !

Download Now

File Type: zip Slide.in.Custom.Board.via.CSS.v2.00.zip (8.8 KB, 102 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
4 благодарности(ей) от:
eTiKeT?, HMBeaty, lomalove, NTT

Comments
  #12  
Old 06-17-2011, 02:11 PM
NTT NTT is offline
 
Join Date: May 2007
Location: Viet Nam
Posts: 122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Mr_Running View Post
In the footer template I have found it only works if it placed at the top of the template.

The CMS page works but...

I have collapse boxes in my forum area which may be pushing the slider down and also can not view on the blog page.
This bug when using right sidebar in blog.php.
To fix, you can put this code to bottom of navbar template. But, this isn't good choose ! Waiting from author !
Reply With Quote
  #13  
Old 06-17-2011, 11:42 PM
whitedd's Avatar
whitedd whitedd is offline
 
Join Date: Jan 2010
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
How to show all 4 examples at once and behave like the demo?
...same question...

...and showing only in CMS...in forum not...
Reply With Quote
  #14  
Old 06-19-2011, 02:32 PM
BCP Hung BCP Hung is offline
 
Join Date: May 2011
Location: Vietnam
Posts: 155
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Mr_Running View Post
In the footer template I have found it only works if it placed at the top of the template.

The CMS page works but...

I have collapse boxes in my forum area which may be pushing the slider down and also can not view on the blog page.
Confirm that bug ! I will fix, but not with this template modification !
Quote:
Originally Posted by Mr_Running View Post
How to show all 4 examples at once and behave like the demo?
Quote:
Originally Posted by whitedd View Post
...same question...

...and showing only in CMS...in forum not...
I will make a product to improve this template modification, have a few option, easy to choose and create a notifi with out edit template !
Reply With Quote
  #15  
Old 06-19-2011, 05:48 PM
DjEddie DjEddie is offline
 
Join Date: Nov 2007
Posts: 244
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Getamped 1404 View Post
Confirm that bug ! I will fix, but not with this template modification !


I will make a product to improve this template modification, have a few option, easy to choose and create a notifi with out edit template !
nice one... ive removed the coding for now and will await the product ..
Reply With Quote
Благодарность от:
BCP Hung
  #16  
Old 06-19-2011, 06:33 PM
sadiq6210 sadiq6210 is offline
 
Join Date: Sep 2005
Posts: 684
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great
Thanks
Reply With Quote
  #17  
Old 06-20-2011, 01:36 PM
Kaspersku Kaspersku is offline
 
Join Date: Jun 2011
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This mod is quite good, but I found it inadequate when I move the mouse out of the notification, it does not auto-hide, but it just hide when I click the mouse outside the notification area, please update soon!
Thanks
Reply With Quote
  #18  
Old 06-20-2011, 02:20 PM
BCP Hung BCP Hung is offline
 
Join Date: May 2011
Location: Vietnam
Posts: 155
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Kaspersku View Post
This mod is quite good, but I found it inadequate when I move the mouse out of the notification, it does not auto-hide, but it just hide when I click the mouse outside the notification area, please update soon!
Thanks
Please re-read first post (modification info post). This is delay time !
----------------------------------------------------------------------
----------------------------------------------------------------------
Khi anh kh?ng post script l?n ITVNN th? em cũng đừng c? t?y tiện m? leech n? về nh? ! ?t nhất cũng n?n t?n trọng !
----------------------------------------------------------------------

Thanks,
Getamped 1404.
Reply With Quote
Благодарность от:
EquinoxWorld
  #19  
Old 06-21-2011, 04:42 PM
DjEddie DjEddie is offline
 
Join Date: Nov 2007
Posts: 244
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

any idea on when a mod version of this will be available?

Thanks
Reply With Quote
  #20  
Old 07-02-2011, 11:23 AM
BCP Hung BCP Hung is offline
 
Join Date: May 2011
Location: Vietnam
Posts: 155
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

New version has been updated, fix all current issues !
------
About add-on : I'm having many work to do, so, I don't have enough time for develop, please wait for a week !

Thanks,
Getamped 1404.
Reply With Quote
  #21  
Old 07-02-2011, 12:16 PM
Twikitero Twikitero is offline
 
Join Date: Aug 2010
Location: LONDON
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great modification,but not woriking for me.
He shows me the next, all out of position.
CLICK HERE TO VIEW THE IMAGE

I'm Follow all the steps correctly.
Would you know it happens?
Again, a modification
thank you very much
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:32 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04935 seconds
  • Memory Usage 2,359KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (9)bbcode_code
  • (2)bbcode_html
  • (7)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (6)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (3)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete