Adrian
Adrian

Reputation: 1002

TYPO3 tt_news - adding images in prev/next links

Do anyone know how to add into tt_news textual previous and next links the images (from news item)? Is it possible?

Best regards,

Adrian

Upvotes: 1

Views: 251

Answers (1)

IamSoClueless
IamSoClueless

Reputation: 451

You could change the stdWrap of these links

plugin.tt_news {
  displaySingle {
    prevLink_stdWrap.wrap = |<img src="prev.jpg">
    nextLink_stdWrap.wrap = |<img src="next.jpg">
  }
}

Upvotes: 1

Related Questions