I can't find how a make this a link to my image in CakePHP:
<img src="img/default.png" width="130" style="position: absolute; top: 0px; left: 0px; z-index: 3; opacity: 0; ">
$html->image('default.png').....????;
Many Thanks!
You need to add the following to the options array:
'url' => array('controller' => '..' 'action' => '..')
i.e.
$this->Html->image('default.png', array('url' => ..));
There's more information in the documentation