Hello,
I have this code for previous arrow from HTML coder
<img src="<?=$this->webroot?>img/arrow_button_prev.png" alt="Previous Event"
style="opacity:1.0;filter:alpha(opacity=100); " onmouseover="this.style.opacity=0.7;this.filter.alpha.opacity=70"
onmouseout="this.style.opacity=1.0;this.filter.alpha.opacity=100" />
And I need to rigg that image into pagination
<?php echo $this->Paginator->prev('<< ' , array(), null, array('class'=>'disabled'));?>
I tried to replace the << with the img tag and It outputs HTML codes. How can I achieve this?