I see in _menu_branch.html.erb the following code: <%= link_to
menu_branch.title, menu_branch.url %>.
If this were a standard application, I'd be spelunking the
controllers, probably menu_controller, to do what I need. But, you've
hidden everything.
Marc Luzietti
Marc L
But if you still want to hack it, wouldn't this work:
<%= link_to "<span>#{menu_branch.title}</span>", menu_branch.url %>
And that did the trick. I'm new to Ruby, and I forgot how to do that,
but as soon as I saw the code I slapped my head.
Thanks.
Marc L