Thanks Kevin.
I have the classing to work for my css now, but for some reason I'm not seeing the change to the view for the association name. So for instance, I have the custom_name_method tag declared in another dryml file (under the application directory in taglibs) as this:
<def tag="custom_name_method">
<a>
<view:street_address1/><br/>
<if:street_address2><view/><br/></if>
<view:city/>, <view:state/> <view:zip_code/><br/>
</a>
</def>
And I call the field list in the same file as the custom_name_method tag like this:
<def tag="show-some-info">
<body: param>
<field-list class="some-class-name" fields="
association_name,
some_other_field"
param/>
</body:>
</def>
Do I need to put these tags in another file, or perhaps change the <view:custom...> to something else? Sorry for the ignorance. My brain's having a tough time comprehending DRYML... :(