2020-12-01, 01:52 PM
(This post was last modified: 2020-12-01, 02:52 PM by smilla. Edited 1 time in total.)
Hi, on an old installation I use this theme: my responsive.
https://community.mybb.com/mods.php?action=view&pid=303
After updating mybb to 1.8.24, certain scripts, for example, the rate button do not work.
I checked "headerinclude", compared to the standard, deleted
updated to 4.7.0:
but it does not work.
What can it depend on? The problem is with the theme because it works with other themes.
Thank you.
I have also added this in global.css, as recommended here:
https://community.mybb.com/thread-213964...pid1288154
https://community.mybb.com/mods.php?action=view&pid=303
After updating mybb to 1.8.24, certain scripts, for example, the rate button do not work.
I checked "headerinclude", compared to the standard, deleted
<script type = text / javascript>
jQuery.noConflict ();
</script>
updated to 4.7.0:
<link rel = "stylesheet" href = "http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.min.css">
but it does not work.
What can it depend on? The problem is with the theme because it works with other themes.
Thank you.
I have also added this in global.css, as recommended here:
https://community.mybb.com/thread-213964...pid1288154
/** Modal Start **/
.modal {
display: none;
width: 400px;
text-align: left;
background: #fff;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-o-border-radius: 8px;
-ms-border-radius: 8px;
border-radius: 8px;
-webkit-box-shadow: 0 0 10px #000;
-moz-box-shadow: 0 0 10px #000;
-o-box-shadow: 0 0 10px #000;
-ms-box-shadow: 0 0 10px #000;
box-shadow: 0 0 10px #000;
}
.modal a.close-modal {
position: absolute;
top: -12.5px;
right: -12.5px;
display: block;
width: 30px;
height: 30px;
text-indent: -9999px;
background: url(images/close.png) no-repeat 0 0;
}
.modal-spinner {
display: none;
width: 64px;
height: 64px;
position: fixed;
top: 50%;
left: 50%;
margin-right: -32px;
margin-top: -32px;
background: url(images/spinner_big.gif) no-repeat center center;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-o-border-radius: 8px;
-ms-border-radius: 8px;
border-radius: 8px;
}
/** Modal End **/