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
ParadiseScottParadiseScott 

Visualforce Home Page Assistance

Hi All,

I am trying to replicate a visualforce page (see attached) that I found on the internet and was hoping for some assistance in figuring out how I would go about doing so.  Any help would be greatly appreciated!     

Home Page Quick Links

https://www.cloudsherpas.com/partner-salesforce/salesforce-com-quick-links-for-fast-data-access/
William TranWilliam Tran
Scott, the top is just HTML so you can do a view source copy the content and put on our page as a starting point.

The bottom is just a quick way of seeing my task. You can build your own your you could just use the enhanced list such as:

<apex:enhancedlist type="Activity" height="600"/> </apex:page>

In summary create an apex page: put in HTML links and then put in the enhanced list. Save and run.

thx.
ParadiseScottParadiseScott
Thank you William for your feedback. I got the functionality I need by using </apex:pageBlock> and <apex:pageBlockSection> but I think I may edit some it by using <apex:pageBlockTable> so I can keep the formatting more consistent.