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
ram kiran verma gottumukklaram kiran verma gottumukkla 

I want to remove the white header space in the below visual force page.Can you please help me ?

<!--<apex:page title="Data Call Response" TabStyle="DC_Survey__c"
cache="false"  showChat="false"  showHeader="false" sidebar="false"
controller="Creative_REE_DC_ResponceWizard_Contr">-->
    <apex:page standardController="Solution__c"
cache="false"  showChat="false"  showHeader="false" sidebar="true">
    
<apex:form style="overflow:auto;width:1200px;height:250px"  >
   <script type="text/javascript">
      var __sfdcSessionId = '{!GETSESSIONID()}';
    </script>
    <div class="bs">
 <!--  <apex:commandButton value="refresh"  onclick="window.top.location='/{!Solution__c.id}'" /> -->
            <div class="attachments">
                <apex:outputPanel id="AttachmentContainer"  >
                    <div class="panel" style="background-color: #159d82; min-height: 5px; border-radius: 0px;">
                        <div class="panel-heading">
                            <span style="color:#fff;">
                                <i class="glyphicon glyphicon-folder-open"></i> &nbsp;
                                <h2 style="font-size: 12pt;font-weight: 300;"> Supporting Documents - Please drag and drop files under this section to Attach </h2>
                            </span>
                        </div>
                    </div>    
                    <div  style="padding-top: 5px;padding-left: 40px; padding-right: 40px; min-height: 5px">
                        <c:DirectFileUploader_ver2 parentOfAttach="{!Solution__c.id}" renderDeleteBtn="False"/>
                    </div>  
                  
                </apex:outputPanel>
            </div>

    </div>   


<br/>

</apex:form>
</apex:page>
sandeep madhavsandeep madhav
remove "padding-top: 5px;" for componet div

Mark this as best answer if this helps