Back
I'm trying to add a custom User Interface to SalesForce pages, how should I start?
You can customize your page UI with two simple steps:
Adding attributes:
<apex:page id="thePage" controller="yourController" action="{!yourAction}" docType="html-5.0" standardStylesheets="false" sidebar="false" showHeader="false">
Adding static resources:
<apex:includeScript value="{!$Resource.yourJS}" /><apex:stylesheet value="{!$Resource.yourCSS}" />
<apex:includeScript value="{!$Resource.yourJS}" />
<apex:stylesheet value="{!$Resource.yourCSS}" />
Want to learn Salesforce in depth? Go through the Salesforce Training provided by Intellipaat!
31k questions
32.8k answers
501 comments
693 users