Oº°‘¨ [C]hia [S]ẻ [O]nline ¨‘°ºO
♥️Chào Mừng Các Bạn Ghé Thăm Forum Chia Sẻ Online♥️
Rất mong các bạn đăng ký làm thành viên để cùng
nhau chia sẻ mọi nỗi buồn vui
Chúc các bạn có những phút thư giãn vui vẻ
♥️Welcome to forum Chia Sẻ Online♥️
Oº°‘¨ [C]hia [S]ẻ [O]nline ¨‘°ºO
♥️Chào Mừng Các Bạn Ghé Thăm Forum Chia Sẻ Online♥️
Rất mong các bạn đăng ký làm thành viên để cùng
nhau chia sẻ mọi nỗi buồn vui
Chúc các bạn có những phút thư giãn vui vẻ
♥️Welcome to forum Chia Sẻ Online♥️
Welcome Guest, is this your first visit? Register
All times are GMT. The time now is 07:28 AM.

You are not connected. Please login or register

[Codes] Nút chuyển vị trí Profile [phpbb3 & Invision]

Go down  Thông điệp [Trang 1 trong tổng số 1 trang]

Iwillnotlove

Iwillnotlove
Moderator
Moderator


  • Demo : xem tại http://help.forumotion.com/t100-
    [Codes] Nút chuyển vị trí Profile [phpbb3 & Invision]  19254677

  • Cách làm :
    Vào Javascript codes management tạo Javascript mới :
    Title * : Chuyển vị trí pro5.
    Placement : In the topics.
    Javascript Code * : cho phpbb3
    Code:
    //Script for ESF. Copyright © 2011 by Dion Designs. All Rights Reserved.
    function setprofile(loc) {
        if (loc == 'left') {
            $('.postprofile').css({
                'float': 'left',
                'border-left': 'none',
                'border-right': '1px solid #ffffff'
            });
            $('.postprofile dl').css('margin', '0px 8px 0px 0px');
            $('.postbody').css('float', 'right')
        } else {
            $('.postprofile').css({
                'float': 'right',
                'border-left': '1px solid #ffffff',
                'border-right': 'none'
            });
            $('.postprofile dl').css('margin', '0px 0px 0px 8px');
            $('.postbody').css('float', 'left')
        }
    }
    function toggleprofile() {
        var x = my_getcookie('prloc');
        if (x == 'left') {
            x = 'right'
        } else {
            x = 'left'
        }
        my_setcookie('prloc', x, true);
        setprofile(x)
    }
    $(function () {
        if (!document.getElementById('blog_comments') && $('.addthis_button')[0]) {
            $('.addthis_button').eq(0).before('<button class="button2" title="Toggle post profile location" onfocus="this.blur()" onclick="toggleprofile()"><img style="padding:0px 2px;" src="http://2img.net/i/fa/edit.png" /></button> • ');
            var x = my_getcookie('prloc');
            if (x == null) {
                x = 'left'
            }
            my_setcookie('prloc', x, true);
            setprofile(x)
        }
    });
    Javascript Code * : cho Invision
    Code:
    //Script for ESF. Copyright © 2011 by Dion Designs. All Rights Reserved.
    function setprofile(loc) {
        prloc = loc;
        if (loc == 'left') {
            $('.postprofile').css({
                'float': 'left',
                'margin': '0px 0px 0px -18em'
            });
            $('.post-container').css('margin', '0px 0px 0px 18em');
        } else {
            $('.postprofile').css({
                'float': 'right',
                'margin': '0px -18em 0px 0px'
            });
            $('.post-container').css('margin', '0px 18em 0px 0px');
        }
    }
    function toggleprofile() {
        var x = my_getcookie('prloc');
        var x = prloc;
        if (x == 'left') {
            x = 'right';
        } else {
            x = 'left';
        }
        my_setcookie('prloc', x, true);
        setprofile(x);
    }
    $(function () {
        if (!document.getElementById('blog_comments') && $('.addthis_button')[0]) {
            $('.addthis_button').eq(0).before('<button class="button2" title="Toggle post profile location" onclick="toggleprofile();"><img style="margin:0px 2px;" src="http://2img.net/i/fa/edit.png" /></button>');
            var x = my_getcookie('prloc');
            if (x == null) {
                x = 'left'
            }
            my_setcookie('prloc', x, true);
            setprofile(x)
        }
    });


Nguồn : Dion Designs - http://diondesigns.forumotion.com/t90-
Chúc thành công ^^.
Chapia - www.c3zone.net

Về Đầu Trang  Thông điệp [Trang 1 trong tổng số 1 trang]

Permissions in this forum:
Bạn không có quyền trả lời bài viết