by Ange Tuteur Thu 02 Jan 2014, 03:08
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 :
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.