You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use this in my page:
Messi.load('aboutus.html', {title: 'About Us', titleClass: 'anim info', height: '450px', width: '400px', modal: true, padding: '10px'});
I have some css in 'aboutus.html' and it all seems to work well, except for background-color: which Messi ignores. Is there a way to change the background color of the message box?
Messi.load(…) loads html fragments directly into the .messi-content div. This means that the Messi CSS will apply to the loaded content. CSS rules state that the most specific rule will be applied.
You can verify this in your browser's Developer Tools.
Hi,
I use this in my page:
Messi.load('aboutus.html', {title: 'About Us', titleClass: 'anim info', height: '450px', width: '400px', modal: true, padding: '10px'});
I have some css in 'aboutus.html' and it all seems to work well, except for background-color: which Messi ignores. Is there a way to change the background color of the message box?
CSS:
body{
background-color: #284352;
margin:0;
padding:0;
font:normal 16px/20px Ubuntu, sans-serif;
}
Thank you :)
The text was updated successfully, but these errors were encountered: