I'm running into a bit of a problem with my search plugin CSS. It doesn't apply some of the CSS rules I placed on /plugin/searchable/webroot/css/searchable_style. I think it is being overridden by the cakephp default CSS which I used with my application. Should I edit the generic css for my application or there's a way to bypass the generic CSS then apply what's on /plugin/searchable/webroot/css/searchable_style? I also tried css('/searchable/css/searchable_style'); ?> and put it on every view and it worked but not all.

Thank you, Lyman

link|improve this question

71% accept rate
I assume the plugin's css gets loaded. If so, do some of the css rules in the plugin get overriden by css rules in the main css? Can you give an example? – ori Jan 19 at 17:22
Correct, the plugin's css gets loaded because when I change a css attribute from the plugin's css, the change takes effect except for the button. Here's my code: echo $this->Form->submit('Search', array('div' => array('id' => 'search-submit'). Instead of applying 'search-submit' div id, it loads up the main css'. – Lyman Jan 19 at 17:36
what do you mean "loads up the main css"? Aren't they both loaded? (main css & plugin css). Try to debug this a little: does the div have the id? is there a typo? (_ instead of - maybe). – ori Jan 19 at 17:56
feedback

1 Answer

up vote 0 down vote accepted

Place your css file *searchable_style* to webroot/css folder: then use it in app/views/layouts/default.ctp (if you have) OR include this line to your home or landing layout

echo $this->Html->css('/searchable/css/searchable_style');

This will definitely work. but if you rename the plugins folder to plugin as your question, then it will cause problem. Please check all folder naming and retry.

link|improve this answer
This should also work: $this->Html->css('cake.generic' , '/searchable/css/searchable_style');, no need to copy it. – ori Jan 19 at 17:52
I think OP wants a plugin solution, so in theory he should be able to keep said CSS in his plugin folder out of the web root. – Dunhamzzz Jan 19 at 18:11
@Lyman please check my updated answer – thecodeparadox Jan 19 at 18:21
I don't have default.ctp on /plugin/searchable/views not even a layout folder. Should I create /plugin/searchable/views/layout/default.ctp then do echo $this->Html->css('/searchable/css/searchable_style');? – Lyman Jan 20 at 14:34
@Lyman I'm not talking about plugin default.ctp. what is your site's landing or home page – thecodeparadox Jan 20 at 14:35
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.