I would like to add a blank/whitespace in TypoScript It concerne a "More"-link in tt_news.
Here's the HTML I have :
<p class="bodytext">blablabla<span class="news-list-morelink"> <a title="Read all the news" target="_top" href="http://www.google.com">More</a></span></p>
And here's what I want :
<p class="bodytext">blablabla <span class="news-list-morelink"> <a title="Read all the news" target="_top" href="http://www.google.com">More</a></span></p>
(the difference is the whitespace juste before the <span>
.
In my opinion, I must make a change in the TypoScript which generates the link "more". That must be where I wrote "HERE"
plugin.tt_news {
displayLatest{
subheader_stdWrap {
#More link after the bodytext
append = TEXT
append.data = register:newsMoreLink
append.wrap = HERE<span class="news-list-morelink"> |</span>
}
}
}
Does anyone have an idea ? Thanks...