I'm working on a Safari fix. Currently, I have it fixed but need to work out some bugs with the fix. I'll update tomorrow with the fix, probably.
/fixxy fixxy fixxy
EDIT:
Okay, I had some extra time on my hands and I have my board up and running with it fine (
http://forums.advancedmn.com/index.php)
Here's how to fix it.
In your Admin panel
Styles & Templates -> Style Manager ->Click the drop down menu next to your style -> Select 'Main CSS" and click Go
At the very bottom, you'll see a box for "Additional CSS Definitions." Paste the following code in there:
Code:
/* *****Safari Fix****/
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
/* End hide from IE-mac */
/****** End Safari Fix ****/
Now, go to your Style Manager and find the forumhome_vbshout template. Open it up, and find the line...
Code:
<div id="vbshout" style="overflow:auto;height:{$vboptions['shout_box_height']}px;width:100%;">
</div>
Just before that segment, place this...
Code:
<div class="clearfix">
and just after that segment, put...
Should work fine for Safari users now.