By .kuma on
sIFR is working fine throughout my site except for one page.
On this page I have a view that aggregates all items of type x. The titles are removed by sIFR, but nothing is replaced.
Here's an excerpt for the content type:
<?php foreach ($blogs as $nid => $b): ?>
<div class="blog_post">
<h3>
<?print $b->title?>
</h3>
<?php if($b->field_main_image[0]['filepath']) { ?>
... continued...
The title prints fine in sIFR when you go to the individual item, but when all items are aggregated in a view, the title isn't displayed (and there's no Flash movie it seems...). Title prints fine (in non-sIFR text) if I remove the code from sifr-config.js:
sIFR.replace(minion, {
selector: '.blog_post h3',
css: [
'.sIFR-root {color: #FE578E; font-size: 22px; font-weight: bold;}'
],
wmode: 'transparent'
});
Any help would be greatly appreciated!
Thank you
Comments
More info: The object is
More info:
The object is grayed out in Firebug... I usually see this when an element has the display: none property.