hi,
I am using html helper for displaying all my images
<?= $html->image("logo.png", array('class'=>"displayed",
'style'=>"margin-top:25px;") ); ?>
Althought this works fine both in IE and Firefox, I notice one
thing..it does closes img tag properly
above statements prints out
<img src="/mysite/img/logo.png" class="displayed" style="margin-top:
25px;">
whereas it should be
<img src="/mysite/img/logo.png" class="displayed" style="margin-top:
25px;" />
the enclosing tag is missing..
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---