Feature Request: add property term as a css class

Hi,

In application/view/common/resource-values.phtml, can you please add the following code:

    <?php $term_css_class = str_replace(":","_",$escape($propertyData['property']->term())); ?>

right before this bit around line 20ish:

 <div class="property">
        <h4>
        <?php if ($propertyData['alternate_label']): ?>
        <?php echo $escape($propertyData['alternate_label']); ?>
        <?php else: ?>
        <?php echo $escape($translate($propertyData['property']->label())); ?>
        <?php endif; ?>

and then echo $term_css_class right inside <div class="property">, or do something similar that accomplishes the same result?

It makes it so I can style properties individually without having to add a copy of application/view/common/resource-values.phtml into a new theme.

thanks!

This topic was automatically closed 250 days after the last reply. New replies are no longer allowed.