laravel-notify icon indicating copy to clipboard operation
laravel-notify copied to clipboard

Re-Position notify

Open Timbaron opened this issue 4 years ago • 8 comments

This is my first time using Laravel-notify, I would like to change the position of the notification box from top-right to somewhere like button-right. Any ideas?

Timbaron avatar Feb 26 '21 11:02 Timbaron

This is my first time using Laravel-notify, I would like to change the position of the notification box from top-right to somewhere like button-right. Any ideas?

I faced same issue ,no solution found yet

khalidJA avatar Mar 03 '21 13:03 khalidJA

This could be cool... Need the feature

adam-torok avatar Mar 24 '22 16:03 adam-torok

Anyways you can do it via css, just select the .notify class and write align-items: flex-end; with !important or something. Ugly but works

adam-torok avatar Mar 24 '22 16:03 adam-torok

Really great package. The design is nice and clean and who doesn't love the drakify()? Unfortunately, the inability to define a position on the screen with a parameter is disappointing. Would love to see this implemented! Currently my header is over top of the toast message. Would help if I had some control over the placement.

Screenshot 2023-03-17 155533

bdaniel-728 avatar Mar 17 '23 19:03 bdaniel-728

Really great package. The design is nice and clean and who doesn't love the drakify()? Unfortunately, the inability to define a position on the screen with a parameter is disappointing. Would love to see this implemented! Currently my header is over top of the toast message. Would help if I had some control over the placement.

Screenshot 2023-03-17 155533

I am having the same problem. Notify is coming under my header section and a few divs. Can someone please help fix it?

shakhawatsabbir avatar Mar 18 '23 09:03 shakhawatsabbir

Edit the file: vendor\mckenziearts\laravel-notify\resources\views\notifications\toast.blade.php for commom notifications...

Scheleder avatar Mar 31 '23 16:03 Scheleder

Really great package. The design is nice and clean and who doesn't love the drakify()? Unfortunately, the inability to define a position on the screen with a parameter is disappointing. Would love to see this implemented! Currently my header is over top of the toast message. Would help if I had some control over the placement.

Screenshot 2023-03-17 155533

Adding below CSS rule fixes the issue #laravel-notify{ z-index: 9999; }

nageshkinge avatar Apr 15 '23 11:04 nageshkinge

Sure, you can center the .notify class by using justify-content: center; z-index: 9999; in your CSS, potentially adding !important for overriding other styles.

akikhossain avatar Nov 17 '23 11:11 akikhossain