You need to sign in to do that
Don't have an account?
MrTheTyler
Easy way to add banner across top of layout?
I have a custom object but I'm using a layout generated page as opposed to a custom vforce page. I want to add a bold, red line of text across the top of the page and I'm simply trying to avoid having to write a vforce page just to do this. Any tips?
Tyler
Hi Tyler,
You can create a visualforce page having Red line of Text only. And then use this page on standard page layout.
No need to create whole visualforce page.
the page will something like
<apex:page standardController="Account">
<b>PUT YOUR TEXT HERE</b>
</apex:page>
and then use this visualforce page at the top of your Account's Page Layout.
regards,