RM 1.0 Make update title bigger

Morgain

Well-known member
Where is the code that controls the little update title? I want it bigger.
Template or its css page is fine as there are lots of other changes going in an addon.
 
I know this is naughty because not the topic of this thread but Shelley will notice if I post here

To hide the tabs at the moment in resource_view I have commented out

<xen:comment><xen:include template="resource_view_tabs" /></xen:comment>

Could I do this via a 'display none' in EXTRA.css ? Or maybe not for an include.
 
I know this is naughty because not the topic of this thread but Shelley will notice if I post here

To hide the tabs at the moment in resource_view I have commented out

<xen:comment><xen:include template="resource_view_tabs" /></xen:comment>

Could I do this via a 'display none' in EXTRA.css ? Or maybe not for an include.

would the following work for you. I couldn't locate the resource_view page (haven't spent much time with the rm) so i could be wrong.

Code:
.resource_view .tabs {display:none;}
 
Top Bottom