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
TamilTamil 

Help Icon is not shown properly

I add slds tag to existing VF page and trying to view the page in Lightning mode. When i see the page the Help icon are not shown properly. In Classic mode the icon appear twice. 

Classic

Lightning

Here is the code to simulate this:
<apex:page standardController="Case" lightningStylesheets="true" tabStyle="Case" >
    <apex:form>
        <apex:pagemessages/>
    </apex:form>
    <apex:slds/>
    <apex:outputText value="{!Case.ContactEmail}" rendered="false"/>
    <apex:detail />
</apex:page>

 
Raj VakatiRaj Vakati
Update your page API version to 43.0 . Its going to solve your problem 
TamilTamil
@Rajv No it didnt worked.