How to change the layout of your pages in cake php

2008-12-26 Thread mona
I am making login page but due to default settings of cakephp my layout is not looking good i m using table on my login page but if i customize cakephp default page and delete the cakephp logo and all that things on display the contents then my layout is not looking good how to make my login page

Re: How to change the layout of your pages in cake php

2008-12-26 Thread MikeB
function login() { $this-layout = 'newlayout'; } Should work. On Dec 26, 11:54 am, mona poojapinj...@gmail.com wrote: I am making login page but due to default settings of cakephp my layout is not looking good i m using table on my login page but if i customize cakephp default page and

Re: How to change the layout of your pages in cake php

2008-12-26 Thread MikeB
Also, more controller properties: http://book.cakephp.org/view/51/Controller-Attributes On Dec 26, 12:27 pm, MikeB bern...@gmail.com wrote: function login() {     $this-layout = 'newlayout'; } Should work. On Dec 26, 11:54 am, mona poojapinj...@gmail.com wrote: I am making login

Re: How to change the layout of your pages in cake php

2008-12-26 Thread majna
do you have problems with CSS layouts? Like aligning content to center of page, display content in two columns, header and footer or so? On Dec 26, 5:54 pm, mona poojapinj...@gmail.com wrote: I am making login page but due to default settings of cakephp my layout is not looking good i m using

Re: How to change the layout of your pages in cake php

2008-12-26 Thread Webweave
It's all CSS, so all you need to do is modify the CSS properties to what you want your site to look at. I used the default stylesheet as a starting point, and modified it to get the look and feel to match what I really want. On Dec 26, 8:54 am, mona poojapinj...@gmail.com wrote: I am making