I did post this in the Projects.html module, under the Forums bug "Right Side of Forums cut of in IE", but thought I'd post it here too for easy reference.
Anyway, I too was having this exact same problem and after reading the bug report in the Projects.html module and how it would not be fixed, I decided to look into it a little deeper. What I found was that the fix was actually quite simple. There was a missing tag in the style.css file of the cpgnuke theme. It seems that .table3 was not given any width directives, therefor it would run off the right side of the screen (due to the limitations of the underlying table).
Adding the following to /themes/cpgnuke/style/style.css solved the problem for me, and I hope it does the same for you!
| Code:: |
FIND - (in themes/cpgnuke/style/style.css)
.table2 {
width: 50%;
text-align: center;
}
ADD AFTER
.table3 {
width: 100%;
}
SAVE AND CLOSE ALL FILES
|