Good day.
I am currently trying to change from the default CakePHP 3.2 css that comes once an app is baked to w3.css.
Someone please tell me how to go about this. I need some general pointer or a tutorial I can reference.
Thanks.
Good day.
I am currently trying to change from the default CakePHP 3.2 css that comes once an app is baked to w3.css.
Someone please tell me how to go about this. I need some general pointer or a tutorial I can reference.
Thanks.
The layout template is in src/Template/Layout/default.ctp
where you would find the following:
<?= $this->Html->css('base.css') ?>
<?= $this->Html->css('cake.css') ?>
in the header section.
base.css and cake.css can be found in webroot/css directory.
I hope this helps.
Thanks for the info. Do you know any tutorial that covers CakePHP 3 and w3.css?
http://www.w3schools.com/w3css/default.asp
http://book.cakephp.org/3.0/en/views/helpers/html.html#linking-to-css-files
follow both links, i think that’s what you’re looking for.
Thanks. It worked. Thanks a lot.