![]() |
it depends whether your going straight for ready css or scss which has certain advantages over css. So you can either change values of bootstrap or another way is to override them. if you go for scss you will need something like grunt or gulpfile to compile scss back into css.
My current approach is to use scss ; i also use fontawesome . The way I tie it all together is via one style sheet which inside i have : Code: @import url("bootstrap.css"); Its in that order for a purpose. Anything in custom can over ride that which I want to of bootstrap. Now if you go to packagist.org you can use composer to say get scss : https://packagist.org/packages/twbs/bootstrap Or alternatives: https://packagist.org/packages/twitter/bootstrap . Using composer update should update anything in the composer.json file which you get when first using composer for anything. For js I just downloaded and put in a dir called js , which is inside public. I have Code: [andrew@darkstar:kursaal.org/public]$ tree -L 1 js (09-12 09:01) in my layout i also have : Code: <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> can't remember why but it fixed some issues. So in summary if you go composer route, you can install CI4 that way and also other stuff. When you run composer update , it will update everything thats in composer.json IF updates are available and for CI4 , if the CI4 update is appropriate for your version of php . |
Messages In This Thread |
CI 4 integration with Bootstrap 5 - by Kenneth Kipchumba - 09-12-2022, 12:00 AM
RE: CI 4 integration with Bootstrap 5 - by captain-sensible - 09-12-2022, 01:05 AM
RE: CI 4 integration with Bootstrap 5 - by MGatner - 09-12-2022, 03:29 AM
RE: CI 4 integration with Bootstrap 5 - by alexsunny123 - 10-18-2022, 05:41 AM
RE: CI 4 integration with Bootstrap 5 - by shwetadeveloper - 01-27-2025, 10:38 AM
|