You need to sign in to do that
Don't have an account?

Showing classic VF page with Lightning look
Is there any way to cutomize classic visualforce page to look like lightning VF page (without to switching to lightning)?
My requirement is to build a new VF page that is about to be used in salesforce classic but the styling should be like lightning.
My requirement is to build a new VF page that is about to be used in salesforce classic but the styling should be like lightning.
But if you want to stick to the first solution just add:
And job done!
You can use SLDS to design your VF page and if you want to show your same VF page in lightning as well as in classic then plz go through with below trailhead link
https://trailhead.salesforce.com/en/modules/lex_dev_visualforce/units/lex_dev_visualforce_multipurpose_pages
For SLDS , plz follow below link
https://lightningdesignsystem.com/downloads/
https://lightningdesignsystem.com/utilities/alignment/
I hope this will help you.
Thank you.
https://releasenotes.docs.salesforce.com/en-us/summer18/release-notes/rn_vf_lightningstylesheets_custom_themes.htm
Enjoy
1. I have followed the instructions above with uploading to the static resources but I'm still having issues. The styling is not applied to the page.
2. I tried using lightningStylesheets=“true” it worked within the context off the org but when I make the page public and access it through a force.com site it reverts back to the classic view. Is there a way to make lightningStylesheets=“true” work with public sites too?
Thanks Bro
I need to make mine lightning look (working in lightning experience). Can anyone help?
<apex:page >
<h1>Latest Updates</h1>
<chatter:feed entityId="0F93N0000004D4NSAU"/>
</apex:page>
<apex:page >
<apex:slds />
<div class="slds-scope">
<h1>Latest Updates</h1>
<chatter:feed entityId="0F93N0000004D4NSAU"/>
</div>
</apex:page>