Topic: For those who wish to use left and right blocks on your minportal mod
I have spent ages trying to get this to work after receiving zero responses here. I finally did it today and it all appears to be working just fine with all the popular browsers.
Open your include/template/main.tpl file and copy this over your existing one.
<style type="text/css">
#left {
float:left;
width: 150px;
overflow: hidden;
}
#right {
float:right;
width: 150px;
overflow: hidden;
}
#main {
display: block;
overflow: hidden;
width: auto;
padding-left: 5px;
padding-right: 5px;
margin-left: 1px;
margin-right: 1px;
}
</style>
Cheers!
Bingiman