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
Vetriselvan ManoharanVetriselvan Manoharan 

CSS for standard page

Hi,

I need to apply custom styles to Ideas page. Is it possible to override the standard salesforce styles and apply our custom styling to it?

Thanks in advance
Best Answer chosen by Vetriselvan Manoharan
pbattissonpbattisson
You cannot change the CSS for a standard page. In a Visualforce page you can set the "standardStylesheets" attribute on the apex:page tag to be false and this will not include the standard CSS for you. You can then use your own custom CSS to enable you to style your pages as required.

All Answers

pbattissonpbattisson
You cannot change the CSS for a standard page. In a Visualforce page you can set the "standardStylesheets" attribute on the apex:page tag to be false and this will not include the standard CSS for you. You can then use your own custom CSS to enable you to style your pages as required.
This was selected as the best answer
Vetriselvan ManoharanVetriselvan Manoharan
Hi Battison,

Thanks you. I need to change the ideas page to my custom styling. So there is no way to do it right? i need to create an new VF page and design it and clicking ideas it need to open it?

Thanks,
Vetri
pbattissonpbattisson
That is correct, youc annot use custom CSS on a standard page layout. You would need a Visualforce page.