MyBB Community Forums

Full Version: Increase the popup size for MyAlerts?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do you increase the width of the MyAlerts 2.0.4 popup modal?
global.min.css

.modal
width
(2019-11-08, 06:18 AM)ziuma Wrote: [ -> ]global.min.css

.modal
width

Thank you for the reply!  Where can I find global.min.css?
login to admin control panel >> templates & style >> themes >> select your themes >> global.css >> edit stylesheet: advanced mode>> find .modal (i think this file) change 400px to ....

BACKUP YOUR CODE (MAYBE IN NOTEPAD) BEFORE CHANGE THIS FILE
(2019-11-08, 11:59 AM)ziuma Wrote: [ -> ]login to admin control panel >> templates & style >> themes >> select your themes >> global.css >> edit stylesheet: advanced mode>> find .modal (i think this file) change 400px to ....

BACKUP YOUR CODE (MAYBE IN NOTEPAD) BEFORE CHANGE THIS FILE
Ok thank you!  That worked but it messed up my Buddy modal...it left a big gap on the right margin maybe due to the scroll bar...
i am sorry, maybe it's wrong answer
(2019-11-08, 12:41 PM)ziuma Wrote: [ -> ]i am sorry, maybe it's wrong answer

It did work for the myalert modal.  I might need to create a whole new modal for myalerts somehow...
Hi,

change the .modal as it should be (without any moddification), and add this at the bottom of all the styles (of global.css)

div#myalerts_alerts_modal {
    width: 600px;
}


Change 600px to whatever you want.
(2019-11-08, 01:42 PM)NoRules Wrote: [ -> ]Hi,

change the .modal as it should be (without any moddification), and add this at the bottom of all the styles (of global.css)

div#myalerts_alerts_modal {
    width: 600px;
}


Change 600px to whatever you want.

Well, that was easy and worked like a charm!!  Thank you for he fast help!!