@wefollow wrote:
I can't find the Bootstrap 4,5.
My file showed boostrap 4.4.1 js
Where can I find the code?
Thank you for help your patience
James
That bootstrap that is linked is from a content delivery network (CDN). The way bootstrap works is that you don't overwrite the original source files. Instead, once you include the core bootstrap files you can make a custom CSS file and then create CSS statements to overwrite the values of the core files. So let's say you want to change the CSS for the primary button color to be red for your brand. In your custom css file you would write:
.btn-primary {background-color: #FF0000;}
Assuming your file is included after the core, CSS follows the order of operation so it will read your file last and make the background of a primary button red. If you don't declare anything the default value from the core file will remain. So while you can edit things in the core files for reasons like trying to only include what you need to reduce file sizes, I wouldn't recommend it unless you are intimately familiar with bootstrap and comfortable enough to understand the impacts of your changes.