|
Rank: Member Groups: Member
Joined: 5/25/2015 Posts: 21
|
Convert following HTML. Second link is applied with first-letter uppercase rule. This makes PDF link only being clickable for uppered L letter.
Code: HTML/ASPX
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
p+p::first-letter {
text-transform: uppercase;
}
</style>
</head>
<body>
<p><a href="#1348">link - this works normally</a></p>
<p><a href="#1348">link - this works only from uppered 'L'</a></p>
<div style="height: 1500px;"></div><!-- Just white space -->
<div id="1348">link target</div>
</body>
</html>
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,221
|
Thanks for the sample file. We have confirmed this to be an issue in the current build. The issue will be fixed in our next build and we will reply here again when the new build is available.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,221
|
Hi,
We have posted a new build that should resolve the issue for you. Please see your private message for the download location.
Thanks!
|
|