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
geis6geis6 

SHow pagblock further down page on override

Thanks for looking at my topic.  I've searched byut have not been able to find an answer to this question.

If I am trying to override the view function of the accounts object with a VF page, how can I make sure that the page blocks on the custom VF page show lower in the view, and not right at the top above the related lists.

Here is my VF code for the page:

<apex:page standardController="Account">
  <apex:pageBlock title="Prod Portal info for {!account.name}">
  <a id="theLink" name="theLink" href="https://XXXXrsft.net/rcc/webapi/webapi.bin?username=XXXX&source=salesforce&typereport=config&tabno=201&zonename={!Account.Zone_Name_Prod_Portal__c}&format=html" target="_blank">Prod Portal Config</a><br></br>
  <iframe height="600px" id="theIframe" name="theIframe" src="https://XXXXrsft.net/rcc/webapi/webapi.bin?username=XXXX&source=salesforce&typereport=config&tabno=201&zonename={!Account.Zone_Name_Prod_Portal__c}&format=html" width="100%"></iframe><br></br>
  <a id="theLink" name="theLink" href="https://XXXXrsft.net/rcc/webapi/webapi.bin?username=XXXX&source=salesforce&typereport=build&tabno=201&zonename={!Account.Zone_Name_Prod_Portal__c}&format=html" target="_blank">Zone Build History</a>
  </apex:pageBlock>
  <apex:detail subject="{!account}"/>                 
  </apex:page>

Obviously, XXXX is representing sensitive data.

Thanks for your help and ideas.

Cheers,
Ward