function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Brennan ButlerBrennan Butler 

VF Page as Dashboard Component

Hello Everyone, So I have a VF page, that I want to place on a dashboard, the preview works great, the links work, but when I pull it into a dashboard, nothing shows up. No links, nothing. The code is below, if it happens to be in the code, or if there is something little I am missing?


<apex:page showHeader="false" sidebar="false" applyBodyTag="false" applyHtmlTag="true" standardStylesheets="true" >
<style>
.toolsrus{color:#333333;padding:10px;width:269px;}
.toolsrus h3{margin-left:10px;;font-size:15px;color:#333333;display:block;}
.toolsrus ul{margin-left:10px;padding-left:0px;}
.toolsrus a{;font-size:13px;color:#333333;display:block;}
.toolsrus a:hover{;font-size:13px;color:#333333;display:block;background:#efefef}
</style>
<div class="toolsrus" >
<h3 >Web Leads</h3>
<div >
<ul>
<li>
<a target="_blank" href="/apex/zaapit_tb_GeneralWL?tp=OpportunityWL&viewid=a153100000BSLndAAH">Total Generated</a>
</li>
<li>
<a target="_blank" href="/apex/zaapit_tb_GeneralWL?tp=OpportunityWL&viewid=a153100000BSLnYAAX">Generated Customers</a>
</li>
<li>
<a target="_blank" href="/apex/zaapit_tb_GeneralWL?tp=OpportunityWL&viewid=a153100000BSLnTAAX">Generated Web Leads</a>
</li>
</ul>
</div>

</div>

</apex:page>