Hi Blake,
Great that you solved it! The CDATA bit looked out of place in all cases.
Take care!
Hi Blake,
It looks like the CDATE code is commented out in the wrong way. It should either start with “/*” and end with “*/” or it should start with “//” and end with “//”. If you have access to the source, can you move the “//” on the last line of the CDATA code after the closing tag, so that it looks as follows:
//<![CDATA[
<script type=”text/JavaScript”>
window.zESettings = {
webWidget: {
offset: { horizontal: ‘-30px’ }
}
};
</script>
]]>//
Hope this helps!
Hi Carolin, after checking the css code on your page for the featured images, I found that you have a setting for your media files fixed to 161px. If you remove the height setting, you should see the actual size of the pictures you added.
@media only screen and (min-width: 767px)
.xxx img {
width: auto;
height: 161px;
margin: auto;
}
Which template are you using?
Cheers