Page 1 of 1

[SOLVED] TTF Font in menu

Posted: Fri Jun 13, 2008 1:38 pm
by ukmgranger
Hi there,

I am trying to make a menu that looks nice - but I also want it to update when new pages are added in cmsms.

Is there a way of utilising the text embellisher module in a menu template, so that the wording in the menu is replaced by ttf?

I am also open to other ideas too!

Regards

Martin

Re: TTF Font in menu

Posted: Fri Jun 13, 2008 4:11 pm
by kermit
yes, you can do this if you want. in your menu template(s), you can replace instances of {$node->menutext} with the module call that generates the desired image style..

{cms_module module="TruetypeText" style="yourstylenamehere" text=$node->menutext}


alternatives to this would include sifr, see this post for some pointers.

Re: TTF Font in menu **SOLVED**

Posted: Fri Jun 13, 2008 5:03 pm
by ukmgranger
Thanks for the help Kermit!

The suggestion that you gace works perfectly!

Code: Select all

{cms_module module="TruetypeText" style="yourstylenamehere" text=$node->menutext}
Cheers dude