XF 2.0 Linking to specific style property group

Actually... this appears to work :)

Code:
{{ link_type('admin', 'styles/style-properties/group', {'style_id': $xf.visitor.style_id}, {'group': 'nodeList'}) }}

If someone finds this and there's a better method... let me know, thanks!
 
OK one further question..., how about to a specific property like the search results?

Code:
{{ link_type('admin', 'styles/style-properties/group', {'style_id': $xf.visitor.style_id}, {'group': 'form'}, {'style_prop': 'formSectionHeader') }}

Not quite working...
 
With a little guidance...

Code:
<a href="{{ link_type('admin', 'styles/style-properties/group', {'style_id': $xf.visitor.style_id}, {'group': 'page'}) }}#sp-pageWidthMax " target="_blank">page width</a>

For future reference.
 
Top Bottom