How to add custom icon image beside the email field ?

Hello Everyone,

I tried to put icon beside the Primary Email field of Lead modules.

Parents Reply
  • Hello Ramana Raju Santhana

    function display()
     {
         $mobile_number = $this->dv->focus->phone_mobile;
    ($this->dv->focus->phone_mobile.' <img src="custom/themes/default/images/New_Logo_Thumb.gif" onClick="googlesearchmobile(\''.$mobile_number.'\');"></img>');
    parent::display();
    }
    

    I have done using this for mobile field.

    but when i tried for email icon is not display.

    here is the code for email which is used.

    $email = $this->dv->focus->email1;
    $this->dv->focus->email1 = ($this->dv->focus->email1.' <img src="custom/themes/default/images/New_Logo_Thumb.gif/New_Logo_Thumb.gif" onClick="googlesearchmobile(\''.$email.'\');"></img>');
    
Children