Hello @MBERARD , thank you for the assistance and feedback. Unfortunately, I was unsuccessful applying the code you provided above. Below is the test html I’m working with. In the css I currently have the .img_check, which contains the image, set to display: none. Eventually the form will have multiple questions. Any addtional help would be great. Thank you again.
<!DOCTYPE html>
<html lang=“en”>
<head>
<meta charset=“UTF-8”>
<meta http-equiv=“X-UA-Compatible” content=“IE=edge”>
<meta name=“viewport” content=“width=device-width, initial-scale=1.0”>
<link rel=“stylesheet” href=“style.css”>
<title>Document</title>
</head>
<body>
<form>
<div>
<div class=“hs-richtext”>
<span class=“img_check”>
<img id=“img_radio_1”
src=“https://22460962.fs1.hubspotusercontent-na1.net/hubfs/22460962/check_red.svg”
alt=“check_red” width=“22” height=“22” loading=“lazy”>
</span>
</div>
<div
class=“hs_we_generally_mesh_well_on_basic_values_and_goals_in_life hs-we_generally_mesh_well_on_basic_values_and_goals_in_life hs-fieldtype-radio field hs-form-field”>
<label
id=“label-we_generally_mesh_well_on_basic_values_and_goals_in_life-4ae9831d-93e1-48c5-b27a-708552a3ff45_7980”
class=“” placeholder=“Enter your We generally mesh well on basic values and goals in life”
for=“we_generally_mesh_well_on_basic_values_and_goals_in_life-4ae9831d-93e1-48c5-b27a-708552a3ff45_7980”><span>We
generally mesh well on basic values and goals in life</span><span
class=“hs-form-required”>*</span></label>
<legend class=“hs-field-desc” style=“display: none;”></legend>
<div class=“input”>
<ul required=“” role=“checkbox” class=“inputs-list multi-container”>
<li class=“hs-form-radio” role=“radio”><label
for=“we_generally_mesh_well_on_basic_values_and_goals_in_life0-4ae9831d-93e1-48c5-b27a-708552a3ff45_7980”
class=“hs-form-radio-display”><input
id=“we_generally_mesh_well_on_basic_values_and_goals_in_life0-4ae9831d-93e1-48c5-b27a-708552a3ff45_7980”
class=“hs-input” type=“radio”
name=“we_generally_mesh_well_on_basic_values_and_goals_in_life”
value=“Yes”><span>Yes</span></label></li>
<li class=“hs-form-radio” role=“radio”><label
for=“we_generally_mesh_well_on_basic_values_and_goals_in_life1-4ae9831d-93e1-48c5-b27a-708552a3ff45_7980”
class=“hs-form-radio-display”><input
id=“we_generally_mesh_well_on_basic_values_and_goals_in_life1-4ae9831d-93e1-48c5-b27a-708552a3ff45_7980”
class=“hs-input” type=“radio”
name=“we_generally_mesh_well_on_basic_values_and_goals_in_life”
value=“No”><span>No</span></label></li>
</ul>
</div>
</div>
</div>
<div>
<div class=“hs-richtext hs-main-font-element”><span class=“img_check”><img id=“img_radio_2”
src=“https://22460962.fs1.hubspotusercontent-na1.net/hubfs/22460962/check_red.svg”
alt=“check_red” width=“22” height=“22” loading=“lazy”></span>
</div>
<div
class=“hs_my_partner_appreciates_the_things_i_do_in_this_relationship hs-my_partner_appreciates_the_things_i_do_in_this_relationship hs-fieldtype-radio field hs-form-field”>
<label
id=“label-my_partner_appreciates_the_things_i_do_in_this_relationship-4ae9831d-93e1-48c5-b27a-708552a3ff45_7684”
class=“” placeholder=“Enter your My partner appreciates the things I do in this relationship”
for=“my_partner_appreciates_the_things_i_do_in_this_relationship-4ae9831d-93e1-48c5-b27a-708552a3ff45_7684”><span>My
partner appreciates the things I do in this relationship</span><span
class=“hs-form-required”>*</span></label>
<legend class=“hs-field-desc” style=“display: none;”></legend>
<div class=“input”>
<ul required=“” role=“checkbox” class=“inputs-list multi-container”>
<li class=“hs-form-radio” role=“radio”><label
for=“my_partner_appreciates_the_things_i_do_in_this_relationship0-4ae9831d-93e1-48c5-b27a-708552a3ff45_7684”
class=“hs-form-radio-display”><input
id=“my_partner_appreciates_the_things_i_do_in_this_relationship0-4ae9831d-93e1-48c5-b27a-708552a3ff45_7684”
class=“hs-input” type=“radio”
name=“my_partner_appreciates_the_things_i_do_in_this_relationship”
value=“Yes”><span>Yes</span></label></li>
<li class=“hs-form-radio” role=“radio”><label
for=“my_partner_appreciates_the_things_i_do_in_this_relationship1-4ae9831d-93e1-48c5-b27a-708552a3ff45_7684”
class=“hs-form-radio-display”><input
id=“my_partner_appreciates_the_things_i_do_in_this_relationship1-4ae9831d-93e1-48c5-b27a-708552a3ff45_7684”
class=“hs-input” type=“radio”
name=“my_partner_appreciates_the_things_i_do_in_this_relationship”
value=“No”><span>No</span></label></li>
</ul>
</div>
</div>
</div>
</form>
<script src=“script.js”></script>
</body>
</html>