It's a very nice addition however it doesn't work in IE7 The top line of tabs are visable but the bottom content area isn't.
There's also some fixes which need to be implamented in the CSS for it to cope with ie6 they are:
under .mootabs_title li
the code
| Code: |
.mootabs_title li {
float: left;
background-color: #ddd;
padding: 2px 8px 2px 8px;
margin-right: 2px;
cursor: pointer;
height: 24px;
}
|
needs to be changed to
| Code: |
.mootabs_title li {
float: left;
background-color: #ddd;
padding: 2px 8px 2px 30px;
margin-right: 2px;
cursor: pointer;
height: 24px;
}
|
This stops the Bullet Points from crashing with the tab titles.
and also in .mootabs_panel
The code
| Code: |
.mootabs_panel {
display: none;
background-color: #ddd;
position: relative;
width: 100%;
top: -1px;
clear: both;
overflow: auto;
padding: 4px;
}
|
needs to be changed to
| Code: |
.mootabs_panel {
display: none;
background-color: #ddd;
position: relative;
width: 99%;
top: -1px;
clear: both;
overflow: auto;
padding: 4px;
}
|
as this stops ie invoking quirks mode which then pushes and left hand colum under the module.
Sadly I cannot find a quick fix for the ie7 issue.
Hope the above helps you any ideas on how to solve the remaining issue please?
oh and for some reason in opera the images don't show on this bulletin board. If it's the standard fireboard issue then copy over your eng images from your default template into your grey template images folder this will make them show
