klark
klark

Reputation: 494

cakephp paginate second page does not display icons

My main page displays a list of post, with an icon at the beginning of each popst.

When I click next page (paginator), all lines are displayed without icons. There is an square insstead of the icons.

Thank you for your help

I'm linking the icon in the following way

<img src="webroot\img\cake.icon.png" alt="Smiley face" height="42" width="42"> 

Upvotes: 1

Views: 223

Answers (1)

Blazemonger
Blazemonger

Reputation: 92893

webroot\img\cake.icon.png appears to be a server path, not a URL path, which is what's needed.

Try changing the image's src attribute to /img/cake.icon.png or, if your CakePHP installation is in a subdirectory, to /subdir/img/cake.icon.png

Upvotes: 1

Related Questions