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
crocodilecrocodile 

Title of the page not displayed...

Hi

I created a page : HelloWorld

code:

 

<apex:page showHeader="false" title="MyTitle">
  <h1>Hello World</h1>
</apex:page>

 

But when I opened this page in the browser with the url: https://c.ap1.visual.force.com/apex/HelloWorld

The title not displayed! 

Can anyone please assist me to display the title.

 

Thx in adv,

VNath


Pradeep_NavatarPradeep_Navatar

When you are editing a page in developer mode, the page title will not be displayed. You need to disable the developer mode from personal information page, then title will be shown in browser.

VNathVNath

Hi Pradeep Unchecked Development Mode in Setup -> My Personal Information -> Personal Information. Even though the title not get displayed. 

 

Is there anything in need to change the settings?

 

Thx

VNath

RamboRambo

Hi Buddy,

                   Even I faced the same issue, then de only soln dat was done inorder to show the title was make showheader "true".

Pradeep_NavatarPradeep_Navatar

Tryout this sample code to get workaround for title for a page and make sure 'Title' will come after you uncheck the developmentmode :

 

               <apex:page showHeader="false" >

                                                                <head>

                                                                                <title> Volunteer Sign-up </title>

                                                                </head>

                                                                    <h1>Hello World</h1>

                </apex:page>