我正在尝试将非窗口/通知的宽度更改为800px,但我做不到。This is window with default width
我在.css文件中添加了:
.noty-message{
width:800px;
height:800px;
}什么都不会改变。当我尝试添加
.noty_bar {
width: 800px;
}然后我的窗口看起来就像that。如何设置noty对象的宽度?
发布于 2017-09-20 09:45:02
我很抱歉你正在使用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”子字符串,但此方法应该有效。
https://stackoverflow.com/questions/39526510
复制相似问题