Notifications visible when FM Toolbar is hidden Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
3 posters

    Notifications visible when FM Toolbar is hidden

    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6923
    Reputation : 795
    Language : Greek, English

    Solved Notifications visible when FM Toolbar is hidden

    Post by TheCrow December 31st 2013, 1:43 pm

    Hello. I managed to move the notification part from the fm toolbar to my menu bar. Nut now, if i hide the fm toolbar it goes away. Is there anyway i can show it up when fm toolbar is hidden?

    Before i hide the FM Toolbar:
    Notifications visible when FM Toolbar is hidden DTeuyDG

    After i hide the FM Toolbar:
    Notifications visible when FM Toolbar is hidden ZvCUhAM

    Forum address: http://informationforum.forumgreek.com/forum
    Forum Version: PunBB
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6923
    Reputation : 795
    Language : Greek, English

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by TheCrow January 2nd 2014, 2:16 am

    up



    Notifications visible when FM Toolbar is hidden Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13246
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by Ange Tuteur January 2nd 2014, 4:08 am

    Hello Marios94 ,

    Doing this will be difficult. Firstly the reason why the notifs also hide when you hide the toolbar is because #fa_toolbar is the parent of the notifs. If you remove the parent you'll remove the children as well.

    You would have to do something similar to appending its contents to elements on your forum.

    For example :
    Code:
    jQuery(window).load(function() { jQuery('#fa_notifications').appendTo('.navbar'); });

    I append the notifications to my navbar, and then apply some CSS :
    Code:
    #notif_list {
    left:89.7% !important;
    top:420px; !important;
    }
    #fa_notifications {
    color:#fff;
    font-weight:bold;
    cursor:pointer;
    }

    being the result :
    Notifications visible when FM Toolbar is hidden Captu282

    However, since the notif list is also a child of the toolbar it would be removed if you tried to hide it. So you would also have to append the notif list to another element.

    You could also try hiding the toolbar through position tricks, and then moving the elements you want onto the visible range of the forum.
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6923
    Reputation : 795
    Language : Greek, English

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by TheCrow January 2nd 2014, 12:02 pm

    Ok so i don't want to remove all. I want to display: none this part
    Notifications visible when FM Toolbar is hidden 0eda
    Is there a way to do that?
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13246
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by Ange Tuteur January 2nd 2014, 2:06 pm

    To remove that copyright :
    Administration Panel > Misc > Toolbar > Configuration > Modify the copyrights

    Then remove the text, url, image.
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51556
    Reputation : 3519
    Language : English
    Location : United States

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by SLGray January 2nd 2014, 4:33 pm

    You can not change that without using credits. If you do it without using credits, you will be breaking the Terms of Service agreement.



    Notifications visible when FM Toolbar is hidden Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6923
    Reputation : 795
    Language : Greek, English

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by TheCrow January 2nd 2014, 7:38 pm

    can't i hide the search and share parts from the fm toolbar so i can view only the Forumotion, Welcome and notification parts?



    Notifications visible when FM Toolbar is hidden Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13246
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by Ange Tuteur January 2nd 2014, 8:47 pm

    Add this to your CSS :
    Code:
    #fa_search, #fa_share { display:none !important; }
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6923
    Reputation : 795
    Language : Greek, English

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by TheCrow January 2nd 2014, 9:02 pm

    SLGray wrote:You can not change that without using credits.  If you do it without using credits, you will be breaking the Terms of Service agreement.
    I mean about what SLGray said..

    Am i aloud to do what you told be without buying credits?
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51556
    Reputation : 3519
    Language : English
    Location : United States

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by SLGray January 2nd 2014, 9:54 pm

    You can change everything except the image and the link to Forumotion. You can change those with credits.



    Notifications visible when FM Toolbar is hidden Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6923
    Reputation : 795
    Language : Greek, English

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by TheCrow January 2nd 2014, 10:26 pm

    I never said i wanted to change them. I only wanted to hide them with the css code (display:none) and i asked if i am allowed to do that, so i don't have to use 2 menubars.



    Notifications visible when FM Toolbar is hidden Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51556
    Reputation : 3519
    Language : English
    Location : United States

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by SLGray January 2nd 2014, 10:28 pm

    I am talking about the image and the link to Forumotion to the left of the search bar.  You can not hide those items with code.  You can only edit them with credits.



    Notifications visible when FM Toolbar is hidden Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6923
    Reputation : 795
    Language : Greek, English

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by TheCrow January 2nd 2014, 11:24 pm

    Ok solved! Thank you both! I will try tomorrow to fix all issues!



    Notifications visible when FM Toolbar is hidden Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13246
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Notifications visible when FM Toolbar is hidden

    Post by Ange Tuteur January 3rd 2014, 10:15 am

    Topic solved and archived