我正在尝试将Noty窗口/通知的宽度更改为800px,但不能。This is window with default width

我添加到我的.css文件:

.noty-message{
    width:800px;
    height:800px;
}


并没有改变。当我尝试添加

.noty_bar {
    width: 800px;
}


然后我的窗口看起来像that。如何设置Noty对象的宽度?

最佳答案

我正在使用layout: 'topRight'type: 'alert',这将迫使它们的宽度为800px:

#noty_topRight_layout_container,
#noty_topRight_layout_container > li,
#noty_bar, #noty_type_alert           {
    width: 800px !important;
}


如果要为其他布局和noty类型更改它,则必须更改“ topRight”和“ alert”子字符串,但是这种方法应该可行。

09-25 16:44