I am developing a site with a designer, and he already coded the entire static webpage with HTML/CSS.
We needed an admin backend and an Auth component, so I figured a simple CakePHP app would work well, instead of hacking together a custom PHP/MySQL solution. I converted all of his static pages to CakePHP syntax, creating simple views using the PagesController. I created a completely separate layout for the admin backend using Bootstrap 3.0.
On a few of the frontend pages, like our "Sign Up" and "Login Page", I want to utilize Bootstrap 3.0's nice CSS and Javascript components (especially its clean form styles).
However, when I include Bootstrap in the <head> of the layout, it conflicts with the CSS classes that the designer created, totally messing up the layout of the page.
I basically was wondering if there was a way I could apply a CSS stylesheet ONLY to the content of a view (i.e. signup.ctp), and not its layout (default.ctp)? This would save me a lot of time and headaches.