Re: how to link css files?

2011-04-21 Thread Otavio Martins Salomao
for link your css file on the page u need link it: css(array('cssName1','cssName2')); ?> 2011/4/20 cricket > On Wed, Apr 20, 2011 at 9:45 AM, varai wrote: > > Hi, > > > > A small mistake, I don't want to specify the width for #navbar and I > > want it to inherit the width from the #header (ie.

Re: how to link css files?

2011-04-20 Thread cricket
On Wed, Apr 20, 2011 at 9:45 AM, varai wrote: > Hi, > > A small mistake, I don't want to specify the width for #navbar and I > want it to inherit the width from the #header (ie. width:100%). > #navbar comes inside #header. > navbar's css rules are in nav_bar.css and header's css rules are in > cak

Re: how to link css files?

2011-04-20 Thread varai
Hi, A small mistake, I don't want to specify the width for #navbar and I want it to inherit the width from the #header (ie. width:100%). #navbar comes inside #header. navbar's css rules are in nav_bar.css and header's css rules are in cake.generic.css. So, how do i link these 2 css files so that n

Re: how to link css files?

2011-04-19 Thread cricket
On Tue, Apr 19, 2011 at 11:33 AM, varai wrote: > Hi, > > I have > #navbar { >        margin: 0; >        padding: 0; >        height: 1em; >        width:100%; } > in nav_bar.css > > #navbar div comes under #header div from cake.generic.css, so #navbar > div should inherit the properties of #heade

how to link css files?

2011-04-19 Thread varai
Hi, I have #navbar { margin: 0; padding: 0; height: 1em; width:100%; } in nav_bar.css #navbar div comes under #header div from cake.generic.css, so #navbar div should inherit the properties of #header div. #header{ width:100%; } So, how do I link nav_bar.c