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
buggs sfdcbuggs sfdc 

inline visualforce page,remove extra spaces and it looks differently on each and every user,i need same view for all the users in my org

HI,

Here am attaching an image which one is an inline visualforce page,am getting an extra whitespace(which ismarked in oval shape) on the section, i used <apex:outputPanel> <div> tag,that resolves my problem it perfectly fits my extra spaces,but if i login with some other user still i can see those extra space,and other user which i logged belongs to same profile of which am using now,can anyone help me out to fix it.please check my visualforce page code attached below.

Page with extra spaces
 
<apex:page standardController="Account" extensions="controller" showChat="false">

    <apex:form >
        <div id="my-timeline">
            <apex:pageBlock >
                <apex:pageBlockSection >
                   <apex:outputPanel >
         <div id="my-timeline" style="width:1100px;">

                    <apex:pageBlockTable value="{!sales}" var="sub" >
                            <apex:column value="{!sub.Name}"/>
                            <apex:column value="{!sub.Date__c}"/>
                            <apex:column value="{!sub.firsrname__c}"/>
                            <apex:column value="{!sub.plan_c}"/>
                            <apex:column value="{!sub.rate__c}"/>
                            <apex:column value="{!sub.startdate__c}"/>
                        </div>
                        <apex:column>
                            <apex:pageBlockTable value="{!sub.child__r}" var="con1" >
                                    <apex:column value="{!con1.Name}"/>
                                    <apex:column value="{!con1.samp1__c}"/>
                                    <apex:column value="{!con1.Prod__c}"/>
                                    <apex:column value="{!con1.check__c}"/>
                                    <apex:column value="{!con1.final__c}"/>
                            </apex:pageblockTable>

                        </apex:column>


                    </apex:pageblocktable>

                    </div>
             </apex:outputPanel>
     </apex:pageBlockSection>

            </apex:pageBlock>

    </apex:form>

</apex:page>