Layout that loads only for specific actions

If I'm understanding you right, you should be able to just do: render :layout => 'events'

Put that in the controller method for the action you want the layout loaded for. Any other actions will still use the default layout for that controller

- Paul