opt_{$po.option_id}
to the class in the product_options.tpl
<div class="form-field{if !$capture_options_vs_qty} product-list-field{/if} clear opt_{$po.option_id}" id="opt_{$obj_prefix}{$id}_{$po.option_id}">
So that gives me something I can work with across the entire site. To do this I had to make a change to the original product_options.tpl file. Is there a way to make this change like hooks so I can minimize my edits to system files? I tried creating a hook for "products:product_option_content" and just changing the path to my edited version of the file, but it's not working.
{hook name="products:product_option_content"} {if $disable_ids} {assign var="_disable_ids" value="`$disable_ids``$obj_id`"} {else} {assign var="_disable_ids" value=""} {/if} {include file="addons/my_changes/hooks/products/components/product_options.override.tpl" id=$obj_id product_options=$product.product_options name="product_data" capture_options_vs_qty=$capture_options_vs_qty disable_ids=$_disable_ids} {/hook}