# Settings ![Refinery Settings](http://refinerycms.com/system/images/0000/0666/settings.png) ## About Refinery comes out of the box with a full settings area that is populated with smart defaults to avoid configuration. ## Settings of Interest Here's an overview of what comes out of the box ### Google Analytics Just edit the setting called "Analytics Page Code" and enter just your account number. It will look something like this UA-XXXXXX-X Save this and Refinery will automatically note you have set the page code up and start rendering it on the front end so tracking can begin. ### Firebug Lite Support [Firebug lite](http://getfirebug.com/lite) is fantastic for debugging your site in Internet Explorer. Set the 'Show Firebug Lite' setting to ``true`` and you'll be able to debug your views in Internet Explorer in no time. _Note: you'll want to turn this off once your site is live_ ### Use Google Ajax Libraries This setting will automatically change your AJAX libraries to use the ones delivered by Google's CDN (Content Delivery Network) which means your Javascript will be cached and delivery as quickly as possible. ## How do I Make my Own Settings? Settings can be really useful, especially when you have custom display logic or new plugins that need to behave in different ways. To best explain how settings work let's use an example. Say you have a client who has a display in a local trade show every year and 2 months before the trade show they want to display a little banner in the header of all pages. But once the trade show is finished, the client needs to be able to hide it again until next year. This is what my ``application.html.erb`` file might look like: ...