srinik
srinik

Reputation: 144

All string literals are show in small case in Tapestry 5

I am new to tapestry5 (5.3.6) and having issue while displaying labels and text.

<h1>
      <t:pagelink page="index">First Tutorial</t:pagelink>
</h1>

The above tag always shows as "first tutorial", tapestry always shows every thing in small case.

Any idea how to configure tapestry to retain the case of the string.

Upvotes: 0

Views: 59

Answers (1)

Tawus
Tawus

Reputation: 504

Tapestry does not modify text case. You should check your css to see if there is any text-transform:lowercase rule applicable to the element.

Upvotes: 7

Related Questions