Quote:
Originally Posted by Swordman844555
Yes!
|
There is an issue in your style, by inspecting elements with Google Chrome I found out that one is causing issue :
Code:
* html .floatcontainer,
.formcontrols .blockrow,
dl.stats {
height:1%;
}
This causes the height of the lines to be very small and all messed up.
About the bootstrap error, apparently it's an issue of in the mgc_cb_evo/class/class_core.php file, try that code, search for :
PHP Code:
if (!empty($unserialized_params))
Replace by :
Code:
if (!empty($unserialized_params) && is_array($unserialized_params))
Cl?ment