1

我正在尝试将通知窗口/通知的宽度更改为 800 像素,但我不能。这是默认宽度的窗口

我添加到我的 .css 文件中:

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

什么都没有改变。当我尝试添加

.noty_bar {
    width: 800px;   
}

然后我的窗口看起来像那样。如何设置通知对象的宽度?

4

1 回答 1

2

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

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

如果您想为其他布局和通知类型更改它,则必须更改“topRight”和“alert”子字符串,但这种方法应该有效。

于 2017-09-20T01:45:01.967 回答