• Resolved emanuelevenditti

    (@emanuelevenditti)


    Hi there, great plugin!

    We thought we’d add it to the top navigation menu (using Shortcodes in Menu) but we are having issues with the background on the open view of the Notification Bell where messages are listed.

    Here is a visual:
    https://cl.ly/p84Z

    You think this can be fixed with some CSS or code tweak? If so, do you have it handy?

    Thanks in advance,
    cheers

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter emanuelevenditti

    (@emanuelevenditti)

    We actually don’t even need the preview of the messages, so we could even just remove the part of the code that shows them, so we are only left with the Bell and the number of message. Would that be possible?

    Plugin Author 1naveengiri

    (@1naveengiri)

    Hi @emanuelevenditti,
    Sorry for late reply here. you can use following code anywhere in your script.
    to disable message preview list completely for notification bell.

    
    jQuery(document).ready(function(){
    	jQuery('.bell_notification_container .notifications_lists_container').remove();
    });
    
    Plugin Author 1naveengiri

    (@1naveengiri)

    OR If you are not technical guy then you can put this code in your theme header.php file

    
    	<script type="text/javascript">
    		jQuery(document).ready(function(){
    			jQuery('.bell_notification_container .notifications_lists_container').remove();
    		});
    	</script>
    
    • This reply was modified 6 years, 9 months ago by 1naveengiri.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing background color’ is closed to new replies.