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
Melissa Driscoll 14Melissa Driscoll 14 

I cant get rid of this dot on my Visualforce page

<apex:page standardcontroller="Account"> <apex:dataList value="{!Account}" var="a"><br></br>
<table style="border-collapse: collapse; width: 100%; height: 100px;" border="0">
<tbody>
<tr style="height: 25px;"> <td style="width: 50%; height: 25px;font-size:15px;font-weight:bold">Created By:&nbsp;<apex:outputLabel style="font-size:12px">{!a.CreatedBy.Full_Name__c}</apex:outputLabel></td>

<td style="width: 50%; height: 25px;font-size:15px;font-weight:bold">Record ID:&nbsp;<apex:outputLabel style="font-size:12px">{!a.Id}</apex:outputLabel></td></tr>

<tr style="height: 25px;"> <td style="width: 50%; height: 25px;font-size:15px;font-weight:bold">Last Modified Date:<apex:outputLabel style="font-size:12px">{!a.LastModifiedDate}</apex:outputLabel></td> </tr>

<tr style="height: 25px;"> <td style="width: 50%; height: 25px;font-size:15px;font-weight:bold">Owner:&nbsp;<apex:outputLabel style="font-size:12px">{!a.Owner.Full_Name__c}</apex:outputLabel></td>

<td style="width: 50%; height: 25px;font-size:15px;font-weight:bold">BQE CRM ID:&nbsp;<apex:outputLabel style="font-size:12px">{!a.BQECRMID__c}</apex:outputLabel></td> </tr> </tbody>
</table>
</apex:dataList>
</apex:page>

User-added image
Best Answer chosen by Melissa Driscoll 14
PriyaPriya (Salesforce Developers) 
Hey Mellissa,

Kindly try this code :-
<apex:page standardcontroller="Account">
    <apex:dataList value="{!Account}" var="a">
    <table style="border-collapse: collapse; width: 100%; height: 100px;" border="0">
        <tbody>
            <tr style="height: 25px;"> <td style="width: 50%; height: 25px;font-size:15px;font-weight:bold">Created By:&nbsp;<apex:outputLabel style="font-size:12px">{!a.CreatedBy.Full_Name__c}</apex:outputLabel></td>
                
                <td style="width: 50%; height: 25px;font-size:15px;font-weight:bold">Record ID:&nbsp;<apex:outputLabel style="font-size:12px">{!a.Id}</apex:outputLabel></td></tr>
            
            <tr style="height: 25px;"> <td style="width: 50%; height: 25px;font-size:15px;font-weight:bold">Last Modified Date:<apex:outputLabel style="font-size:12px">{!a.LastModifiedDate}</apex:outputLabel></td> </tr>
            
            <tr style="height: 25px;"> <td style="width: 50%; height: 25px;font-size:15px;font-weight:bold">Owner:&nbsp;<apex:outputLabel style="font-size:12px">{!a.Owner.Full_Name__c}</apex:outputLabel></td>
                
                <td style="width: 50%; height: 25px;font-size:15px;font-weight:bold">BQE CRM ID:&nbsp;<apex:outputLabel style="font-size:12px">{!a.BQECRMID__c}</apex:outputLabel></td> </tr> </tbody>
    </table>
</apex:dataList>
</apex:page>


If it works for you, Kindly mark it as the best answer.

Thanks & Regards,

Priya Ranjan