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
TylerBrooksTylerBrooks 

Remove white background of visualforce page

Hey All,

I'm trying to add a visualforce page component to a lightning record page, however whenever I do it has a white background with the visualforce page name as a header. Like seen below:

User-added image
Link to picture: http://prntscr.com/mde5b8

Here's the code associated with it:
<apex:page standardStylesheets="false" showHeader="false">
<style type="text/css">
        p { font-weight: bold; background-color: #FF0000;}
    </style>
    <center>
    <p>TECH SUPPORT AND MAINTENENCE IS CURRENTLY NOT ACTIVE</p>
    </center>
</apex:page>

I also tried some other code that I'd found on here but that didn't fix my issue either. It resulted in this:

User-added image
Link to picture: http://prntscr.com/mde88d

And here is the code for that:
<apex:page cache="true" standardController="Account" pageStyle="Acount">
<script>

function resizeFrame() {
var sframe = parent.document.getElementById("{!$Component.myPage}"); 

if ({!Account.Inactive__c} == "false")
{

sframe.style.height = "0px";
} else {

sframe.style.height = document.body.scrollHeight - 10 + "px";
}

}

</script>

<body onLoad="resizeFrame()">
<apex:pageBlock id="myPage" tabStyle="Account">

<style type="text/css">
        p { font-weight: bold; background-color: #FF0000;}
    </style>
    <center>
    <p>TECH SUPPORT AND MAINTENENCE IS CURRENTLY NOT ACTIVE</p>
    </center>

</apex:pageBlock>


</body>

</apex:page>

Any help would be appreciated.

Thanks,
Tyler​​​​​​​
Best Answer chosen by TylerBrooks
Raj VakatiRaj Vakati
Refer this link 

https://salesforce.stackexchange.com/questions/193071/how-can-i-remove-the-visualforce-page-label-in-lightning-component