WordPress 3.2 was currently released and BranfordMagazine as well as WyntonMagazine work fine without any issues. Unfortunately there is an issue with the Nivo slider of SpiegelMagazine and Freelancer although we have tested it without problems on pre-release versions of WP 3.2.
We are working on that and hope to get it fixed as soon as possible. So stay tuned for updates that will be published here.
UPDATE: As a quick fix you can open the file /scripts/nivo-slider/nivo-slider.css and edit this part (normally line 21):
.nivoSlider img {
position:absolute;
top:0px;
left:0px;
}
position:absolute;
top:0px;
left:0px;
}
Add an appropriate height value. For “Freelancer” this is 290px and for SpiegelMagazine it´s 350px. Should look like this:
.nivoSlider img {
position:absolute;
top:0px;
left:0px;
height:350px; /* the new height value according to the height of the image */
}
position:absolute;
top:0px;
left:0px;
height:350px; /* the new height value according to the height of the image */
}
