Welcome Guest Search | Active Topics | Sign In | Register

Nested Links Options
Ciro Castellano
Posted: Friday, March 15, 2013 10:14:00 AM
Rank: Newbie
Groups: Member

Joined: 3/15/2013
Posts: 7
Hi,

i have a strange situation. my code is like this:

Code: HTML/ASPX
<div class="barChartBar" style="width: 100%"></div>
<div style="position: relative; top: 0; left: 0">
      <a href="page1.aspx"> link to p1 </a>
      <a href="page2.aspx"> link to p2 </a>
</div>


the barChartBar is a gray div shown underneath the link div.
When i convert the page to pdf the links are shown like normal text, if i take the gray bar out, the links are shown in the pdf like normal links.

There's a way that i can have the links on the pdf working as links, with the gray bar underneath?
eo_support
Posted: Friday, March 15, 2013 11:14:32 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,195
Hi,

Can you post your CSS defintion for barChartBar?

Thanks!
Ciro Castellano
Posted: Friday, March 15, 2013 1:33:12 PM
Rank: Newbie
Groups: Member

Joined: 3/15/2013
Posts: 7
.barChartBar
{
position: absolute;
top: 0;
left: 0; /*height: 100%;*/
background-color: #dddddd;
min-height: 1.1em;
}
eo_support
Posted: Friday, March 15, 2013 1:39:33 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,195
Hi,

Please check if you are using the latest version. We tested the following HTML and it works fine:

Code: HTML/ASPX
<style>
.barChartBar
{
position: absolute;
top: 0;
left: 0; /*height: 100%;*/
background-color: #dddddd;
min-height: 1.1em;
}
</style>
<div class="barChartBar" style="width: 100%"></div>
<div style="position: relative; top: 0; left: 0">
      <a href="page1.aspx"> link to p1 </a>
      <a href="page2.aspx"> link to p2 </a>
</div>


We use the "All Demos -> Html to PDF -> Basic -> Convert HTML" demo to test the above code and the links are rendered on top of the graybar and functions fine.

Thanks!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.