MyBB Community Forums

Full Version: Modal login background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Where is the css for the modal login background color, can't find it anywhere 

[attachment=32220
global.css and check it in advanced mode, use the search button on it and fill in the word login, you will see now the things you need.
Aint nothing in global.css for the opacity of the background modal login

Found it. it's in both jquery.plugins.min.js and jquery.plugins.js
You can actually specify it for each modal. Where the modal is called just do something like this:

$(elm).modal({
    fadeDuration: 250,
    overlay: "#000",
    opacity: 0.75;
});

Or like Andrew said, change it globally.
(2014-08-24, 12:33 AM)Eric J. Wrote: [ -> ]You can actually specify it for each modal. Where the modal is called just do something like this:

$(elm).modal({
    fadeDuration: 250,
    overlay: "#000",
    opacity: 0.75;
});

Or like Andrew said, change it globally.

Your way seems the better doing it for having it different for each theme. Thanks
(2014-08-25, 02:37 PM)iAndrew Wrote: [ -> ]Your way seems the better doing it for having it different for each theme.

globa.css is theme independent...