I would fire a question at Mark or Ulli at Pulse, they’re usually very on the ball with any issues.
I haven’t used FW7 (nor a code person) to know if anything might be interfering, the issue might be how you have configured Pulse.
You have added the new style within existing style tags
<style type="text/css">
.fwNavItem a {
-moz-transition: all .3s;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
<style type="text/css">
div.blog-content img {
width: 100% !important;
height: auto !important;
}
</style>
Should be
<style type="text/css">
.fwNavItem a {
-moz-transition: all .3s;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
div.blog-content img {
width: 100% !important;
height: auto !important;
}
</style>