Тёмный

Bootstrap 5 Crash Course Tutorial #19 - Customizing Bootstrap 

Net Ninja
Подписаться 1,5 млн
Просмотров 170 тыс.
50% 1

Hey gang, in this Bootstrap tutorial I'll show you how we can install Bootstrap locally and customize theme variables (like colors) using SASS.
🐱‍👤 View this course in full now - without ads - on Net Ninja Pro:
netninja.dev/p/bootstrap-5-cr...
🐱‍💻 Access the course files on GitHub:
github.com/iamshaunjp/bootstr...
🐱‍💻 HTML & CSS Crash Course:
• HTML & CSS Crash Cours...
🐱‍💻 Node.js Crash Course:
• Node JS Tutorial for B...
🐱‍💻 SASS Crash Course:
• SASS Tutorial #1 - Wha...
🐱‍💻 VS Code - code.visualstudio.com/
🐱‍💻 Bootstrap 5 Docs - getbootstrap.com/docs/5.0/get...
🐱‍💻 Social Links:
Facebook - / thenetninjauk
Twitter - / thenetninjauk
Instagram - / thenetninja

Опубликовано:

 

29 июн 2021

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 229   
@jyotirmoydeb5263
@jyotirmoydeb5263 2 года назад
I don’t really understand why the videos like yours with actual content don’t get enough views and some garbage videos have millions of views .... after so many stupid videos this is where I got my answer.... thanks a million
@glenimal
@glenimal 2 года назад
That’s how life is
@rodrigoblejman2129
@rodrigoblejman2129 3 года назад
Just finished the hole playlist. Great teaching method and straight to the point.
@jlambert12013
@jlambert12013 3 года назад
I watch like 15 videos on this and this is the only one I followed and actually had work. Thanks.
@usmaak
@usmaak 2 года назад
This is an excellent tutorial. It is concise and just what I was looking for to turn on negative margins in Bootstrap! Thanks!
@user-op9ds9er3e
@user-op9ds9er3e 4 месяца назад
I have been trying to work out how to compile css and sass for a few days now, this video smashed it, lifesaver!!
@johningram2153
@johningram2153 2 года назад
Great video. I got exactly what I needed by halfway through. Thanks!
@innameleshko7834
@innameleshko7834 2 года назад
Thanks a lot for video! I always have problems with all this pathes and imports, and it makes mem a bit crazy, but u explained everything so clear!
@koala_8027
@koala_8027 3 года назад
Great and simple video, really opened my eyes up to the power of SCSS and bootstrap 5 👍
@ridl27
@ridl27 2 года назад
ty Shaun, I've been waiting for this lesson! So now we are true bootstrap ninjas 🐱‍👤🐱‍👤🐱‍👤
@fraserlock-macardy9633
@fraserlock-macardy9633 2 года назад
That was a great lesson Thanks....Seriously that lesson has instilled a lot of confidence in my coding going forward. Many Thanks indeed. Wishing you well. Fraser.
@wojcik272
@wojcik272 Год назад
Nice job man! finally someone clear and easy explained that issue to me!
@etekumoses3320
@etekumoses3320 Год назад
Been struggling for days on how to customize bootstrap but you are a life saver Thanks a lot 🎉
@NetNinja
@NetNinja Год назад
Happy to help Eteku! Thanks for watching :)
@remember.772
@remember.772 2 месяца назад
​@@NetNinjathe offcanvas and this part(customizing the setting process all) is not working for me ,idk why pls say smth
@BicospaceTech
@BicospaceTech Год назад
You are gold, explained it as clear as Crystal
@_Yolandi
@_Yolandi 2 года назад
Ninja I learned so much from you over the years, thank you
@martunjaykumar752
@martunjaykumar752 2 года назад
Thanks, Buddy. This is what, I was looking for today.
@Russ_Paul
@Russ_Paul 2 года назад
Considering the convoluted nonsense that you used to have to go through with Sublime text to setup sass and compile, Livesass is brilliant. Just to add, excellent tutorial as always!
@user-we3kd4yd1o
@user-we3kd4yd1o 3 года назад
Got up at 3 am to wait for and watch new episode from Net Ninja!
@NetNinja
@NetNinja 3 года назад
dedication!
@abelmurua6980
@abelmurua6980 3 года назад
Amazing, spent 2 days and didnt know how to do this. Thank you
@sammiller9855
@sammiller9855 2 года назад
Excellent tutorial! Thanks
@stephen2824
@stephen2824 2 года назад
Fantastic, my friend. Many thanks indeed !!
@huynhminhquan9977
@huynhminhquan9977 Год назад
You help me save a lot of time. Thanks dude. I subbed
@venugopalpv823
@venugopalpv823 Месяц назад
At last after so many videos I got the correct video, and got clarity on customizing bootstrap themes, Thank you
@NetNinja
@NetNinja Месяц назад
Great to hear! :)
@XnonXte
@XnonXte 11 месяцев назад
Very neat tutorial, thanks!
@muhammadrasyad964
@muhammadrasyad964 2 года назад
Thank you so much, this helps me a lot, thanks once again.
@imajika6
@imajika6 3 месяца назад
Very helpful, thanks!
@teaMmMate
@teaMmMate 8 месяцев назад
Such a helpful, well-explained tutorial. Thank you!!
@NetNinja
@NetNinja 8 месяцев назад
Glad it was helpful! :) thanks for watching
@tahep3906
@tahep3906 Год назад
thanks for this brilliant tutorial, Sass is the easiest and the most useful tool for customizing bootsrap
@NetNinja
@NetNinja Год назад
You're welcome! :)
@finnalandem
@finnalandem Год назад
Look at that, I had to skip to the 19th video to find what I needed, very efficient AND practical.
@tophinski
@tophinski 2 года назад
FOR EVERYONE HAVING PROBLEMS WITH THE CUSTOM COLORS NOT CHANGING Someone already said this but you can add the following under your map-merge function (for example): ``` $theme-colors: map-merge($theme-colors, $custom-theme-colors); // You should already have this, so no need to copy this part. // Start copying at the line below $theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value"); $utilities-colors: map-merge( $theme-colors-rgb, ( "black": to-rgb($black), "white": to-rgb($white), "body": to-rgb($body-color) ) ); $utilities-text-colors: map-loop($utilities-colors, rgba-css-var, "$key", "text"); $utilities-bg-colors: map-loop($utilities-colors, rgba-css-var, "$key", "bg"); // Stop copying at the line above @import "../node_modules/bootstrap/scss/bootstrap"; // You should already have this as well, so no need to copy this part. ``` If this doesn't work, make sure you've typed everything in correctly. Reply to this comment if you have any questions! Also make sure you are watching your sass file at the bottom of the page, you have to click that button every time you load up your project. Hope it helps!
@playmambo9573
@playmambo9573 2 года назад
Thank you! Your solution worked for me!
@kalyanoliveira3224
@kalyanoliveira3224 2 года назад
thanks! why does this work?
@Danny-zf2wu
@Danny-zf2wu 2 года назад
try this // merge the maps to add new theme colors $theme-colors: map-merge($custom-theme-colors, $theme-colors); // import bootstrap @import '../node_modules/bootstrap/scss/bootstrap'; @each $key,$val in $custom-theme-colors{ .bg-#{$key}{ background-color: $val; } .text-#{$key}{ color: $val; } }
@quqkaa
@quqkaa 2 года назад
I love you, thx!
@tomasmarenco6214
@tomasmarenco6214 2 года назад
Thank you!!
@arkansharif5135
@arkansharif5135 Год назад
This was rather an excellent tutorial--thank you, siree!
@NetNinja
@NetNinja Год назад
Thanks Arkan, glad it was helpful!
@mohamadkeshavarz2039
@mohamadkeshavarz2039 2 года назад
very useful , thanks 🌷
@petyrbaelish6046
@petyrbaelish6046 2 года назад
Live sass didnt creat a Css folder for me so I created the Folder myself and I copied the css files there and then it worked. I hoped that helped anyone who has the same problem like me.
@NaveedAnwarNZ
@NaveedAnwarNZ 2 года назад
Thanks for the training. Really appreciated! Very simple and comprehensive for the starters. Just a quick question, I have a scenario where in Bootstrap-3 the .col-xs-n class was defined outside the media query but in Bootstrap 5 it is defined within the media query. Due to which, the wkhtmltopdf utility is unable to use .col-xs-n class. What do you think is the best idea to create a custom class outside media query and inherit it from the .col-xs-n class. Is it possible to show the video on it please? Thanks in advance!
@Moustafa-Sabry
@Moustafa-Sabry 5 месяцев назад
Amazing. Didn’t want to have to learn a whole new language when all I wanted to do was change colours in bootstrap, and now I don’t have to. Thanks!
@KumananMurugesan
@KumananMurugesan 5 месяцев назад
Thank you very much. Really informative and useful.
@NetNinja
@NetNinja 5 месяцев назад
Glad it was helpful! :) thanks for watching
@playerpodre
@playerpodre 2 года назад
Awesome. Solved my Bootstrap Vue problems.
@wickedclamor4882
@wickedclamor4882 Год назад
This is a goldmine. You got a subscription.
@NetNinja
@NetNinja Год назад
Thank you! :)
@patriotlightning7791
@patriotlightning7791 Год назад
Thanks a lot mate. ❤
@sadhakbj
@sadhakbj 3 года назад
Would be grateful if you do another video continuing bootstrap for admin portal with dashboard and forms.
@abhisheksurela2881
@abhisheksurela2881 Год назад
Well Explained! Thank-You So Much 😁
@NetNinja
@NetNinja Год назад
You're very welcome 😊
@Rank1Education
@Rank1Education Год назад
Awesome content
@hasannasuha1118
@hasannasuha1118 2 месяца назад
thanks man, very helpful
@NetNinja
@NetNinja Месяц назад
Thanks for watching! :)
@herozero777
@herozero777 9 месяцев назад
Thanks a lot, this video was very helpful.
@NetNinja
@NetNinja 9 месяцев назад
Glad it was helpful!
@jmasno5
@jmasno5 2 года назад
You are awesome! Do you know how many videos unsuccessfully made it through my thick skull? You were the first that explained this perfectly. I effing get it now! The only thing I had to look up was how to get npm to install bootstrap 4.6 because the site was originally created with ver. 4 and was afraid weird things might happen or not work with v5. Thanks man!!!
@NetNinja
@NetNinja 2 года назад
Aha, thanks for the support, glad it helped! :)
@kristianp26
@kristianp26 3 месяца назад
Thanks really helpful video.
@NetNinja
@NetNinja 3 месяца назад
Glad it was helpful!
@GeminiLearning
@GeminiLearning 3 года назад
Great content Thanks!. Can you use Node JS in ASP.NET project?
@ghiancarlostan8730
@ghiancarlostan8730 2 года назад
thank you so much!!!
@__Who-am-i__
@__Who-am-i__ Год назад
Where have you been all my life! Xd I love you
@wiktoriakorneusz4373
@wiktoriakorneusz4373 2 года назад
omg thank you!
@steveb1307
@steveb1307 Год назад
Have just found your Tutorial, thank you. I a wondering have you done a similar tutorial using VS2022 IDE rather than VS Code? Thanks
@HomelessDeamon
@HomelessDeamon 3 года назад
😉🎊🎊🎊🎊🎊🎊🎊 thanks Shaun (Btw are u doing any livestreams? )
@ninettekosi4046
@ninettekosi4046 9 месяцев назад
You're really great pal
@NetNinja
@NetNinja 9 месяцев назад
Thanks Ninette!
@abhishekmehta2722
@abhishekmehta2722 Год назад
thanks a lot brother !
@NetNinja
@NetNinja Год назад
You're welcome!
@RoykeSenewe
@RoykeSenewe 2 года назад
thank you bro
@wibowomuhmmad
@wibowomuhmmad 2 года назад
thanks very helful
@opeyemiolawuwov3554
@opeyemiolawuwov3554 5 месяцев назад
You are the best.
@stevemesser4842
@stevemesser4842 Год назад
You explain things so well..........Thanks.
@NetNinja
@NetNinja Год назад
Thanks Steve!
@Movieflic
@Movieflic Год назад
@@NetNinja how did you import here 5:13
@chrischti
@chrischti 2 года назад
This is a great course, I went through all the Bootstrap 5 Crash Course now, very helpful. One questions, it was mentioned that overriding styles using a individual css is not recommended, but I wonder why. If I just have to modify some styles, it seems so much easier to me just to add a small, individual stylesheet, rather than setting all this up. What is the reason using an individual css is not recommended?
@innameleshko7834
@innameleshko7834 2 года назад
I think the answer is if u have small project and small changes it is ok, but if your project is huge - its not an option. In my bootstrap course it was explained like this "This is how all components are presented within Bootstrap. Almost any external change is the result of the use of variables. This approach ensures that you bind to the framework and change all components when you change the basic settings. Many developers, when creating their components, miss this point, which negatively affects the future support of the project, since changing the settings will not change the component. To do this, you will need to edit the CSS separately. If there are dozens of such components, then the possibility of error increases, and the time required for changes will increase significantly." sorry for mistakes^ its just google translate from russian
@christosdaglis1163
@christosdaglis1163 2 года назад
Exactly, absolutely no need to do all this for small projects. If you're working a project by yourself, you can work with external files. This is basically for really large scale projects that involve teams.
@AxxionMarketPlace-iu6ri
@AxxionMarketPlace-iu6ri 11 месяцев назад
Thank you
@shohagkhan3677
@shohagkhan3677 3 года назад
Please make tutorial on crud operation with rtk createAsyncThunk and rtk-query. That will be very much helpful for lots of developer.
@saravana6882
@saravana6882 3 года назад
Hello sir, I am beginner to web development, learning javascript now. i found you have uploaded tutorials on react,graphql,gatsby. in which order I should watch this playlists? react then graphql finally gatsby? please guide me sir
@salahalhashmi6528
@salahalhashmi6528 3 года назад
thank you
@wojcik272
@wojcik272 Год назад
Dziękujemy.
@NetNinja
@NetNinja Год назад
Thanks for your support Tomasz!
@OstonCodeCypher
@OstonCodeCypher 3 года назад
My neighbors listen to this everyday. It's not like they have a choice. 😁 #GreatTutorials
@ac.4ce442
@ac.4ce442 3 года назад
Thanks
@microcontrolledbot
@microcontrolledbot 2 года назад
Thank you thank you
@cafe-con-leche
@cafe-con-leche 2 года назад
Thank you so much! but I have no idea why map-merge function doesn't work 😢
@samuelqiu8185
@samuelqiu8185 2 года назад
Thanks!
@NetNinja
@NetNinja 2 года назад
Thanks for the support Samuel :)
@samuelqiu8185
@samuelqiu8185 2 года назад
@@NetNinja You're welcome! Helped me a lot!
@sanjundev9807
@sanjundev9807 3 года назад
Im searching for mongo db realm for react native tutorials, but none found good. Can you do it?
@julioclc
@julioclc 2 года назад
6:01 - It is just what I was searching for.... WHY I need to write the variable ABOVE the import line. I was writing it in other way and didnt get any results!
@MatheusSilva-qm3ph
@MatheusSilva-qm3ph 3 года назад
Very job...
@patrickprakash8
@patrickprakash8 2 года назад
Hey shaun, How can i use @use instead of @import?
@fnamelname3209
@fnamelname3209 2 года назад
Is there any easy way to change the @import to @use? Or some other method? Apparently import is deprecated, or will be eventually.
@kiranfrancis7397
@kiranfrancis7397 3 года назад
Sir please do video about carousel in the BS5
@user-sv8rk6yu7t
@user-sv8rk6yu7t Месяц назад
Nice tutorial, am learning the web dev, instead of altering the default values with SASS I use the inline CSS I am not sure if that's the right way to do.
@joshuathao1532
@joshuathao1532 2 года назад
Anyone else not seeing the same settings in there settings.json file? What is the default and what did he change?
@ijazDeveloper786
@ijazDeveloper786 2 года назад
sir i don,t get the fiel that you have included in html link "css/main.min.css" how can i get this file tell me please
@mlungost
@mlungost 2 месяца назад
genius!
@mateobravamateobrava989
@mateobravamateobrava989 2 года назад
Thanks for all tutorials I am stuck here at compile and output the main.scss file. can you please reexplain how to configire the livesass json settings ? I can t get the files in the specified output folder.. Thanks in advance
@porker5749
@porker5749 2 года назад
Same here
@laurentiuskollmann1634
@laurentiuskollmann1634 2 года назад
This is a great course, but in my case the main.min.css contains only: --bs-altdark: #color; but no e.g. bg-altdark oder text-altdark. Don't no why?
@ridafatima7477
@ridafatima7477 2 года назад
can i change the value of user defined variable in bootstrap?
@dzulhelmi81
@dzulhelmi81 2 года назад
How do you manage and compile Sass on live web server/hosting?
@xiaonaiheme
@xiaonaiheme Год назад
This one is best.Wondering how to use custom colors. But how to use custom font
@ytamb01
@ytamb01 2 года назад
I couldn't get this to work for backgrounds or text but it did work for buttons e.g. btn-altdark was purple but the other classes e.g. bg-altdark and text-altdark didn't have any styling in dev tools. I've checked my scss against yours. Not sure what is wrong. Any ideas?
@dhawald
@dhawald 2 года назад
Same for me as well "altlight" and "altdark" isn't working.
@romarmacaraeg661
@romarmacaraeg661 Год назад
Using this method, how do I add the bootstrap javascripts on my working files?
@saimlone403
@saimlone403 Год назад
i have got a big problem. i was using the cdn links like you did in this video, but after downloading the bundle, the image still doesn't show up when the internet is off. Same goes with the icons, they seldom showup. Anybody having any idea what to do other than using cdn?
@fatalskull8954
@fatalskull8954 5 месяцев назад
Not working on Angular... default styles.scss, doing the same thing, btn-primary still blue
@sohaibesohaib2914
@sohaibesohaib2914 2 года назад
god job
@anoop.225
@anoop.225 2 года назад
How to add custom color for button :hover style similar method ?
@aricwilliamsdeveloper
@aricwilliamsdeveloper 2 года назад
thanks
@NetNinja
@NetNinja 2 года назад
You're welcome! :)
@aeeweb6464
@aeeweb6464 2 года назад
Thanks, But how can I custom directions ? rtl ?
@Movieflic
@Movieflic Год назад
How did you do the first import of the video
@MultiMemich
@MultiMemich 3 года назад
How long is the series gonna be?
@unnathibhandary535
@unnathibhandary535 4 месяца назад
can any on help me in sass integration iam not able to change the color plz help me out
@dhananjayb235
@dhananjayb235 2 года назад
Any changes in bs4 and bs5?
@beesechurger7667
@beesechurger7667 3 месяца назад
does this also work with Templated Bootsrap? the one that are Free? and should i use this method with the same Bootstrap Version?, in my case im trying to use this 1 template with Different Version of Bootstrap, its like 4.0 something and the current latest ver is around 5.2 bootstrap, also the template has alrd css folder with their own variable q.q
@bronwynpotgieter7405
@bronwynpotgieter7405 Месяц назад
Mine isn't compiling into one file.. many files are being compiles in my css folder after watching the scss file?
@wunorfleet2880
@wunorfleet2880 2 года назад
When I click "Watch Sass" it doesn't compile. It gets stuck on "Working on it..." and it gave the following error in the runtime status: glob pattern string required
@marcosaugustorodrigueszano5945
@marcosaugustorodrigueszano5945 14 дней назад
where can I change the number of columns in the grid?
@opeyemiolawuwov3554
@opeyemiolawuwov3554 5 месяцев назад
But before I found your video, I had been trying to make changes to the primary color in the normal bootstrap file I downloaded. I guess because of that, min.css always brings 3 error notifications Also define the standard property 'appearance' for compatibility css(vendorPrefix) Please I need help
Далее
Bootstrap 5 Crash Course Tutorial #20 - Tabs
7:20
Просмотров 71 тыс.
Bootstrap 5 Crash Course
1:11:15
Просмотров 459 тыс.
Получилось у Миланы?😂
00:13
Просмотров 634 тыс.
CSS Tips And Tricks I Wish I Knew Before
12:12
Просмотров 450 тыс.
Customise Bootstrap's Sass
22:27
Просмотров 12 тыс.
You might not need useEffect() ...
21:45
Просмотров 154 тыс.
Top 10 CSS One Liners That Will Blow Your Mind
13:34
Просмотров 928 тыс.
Using CSS custom properties like this is a waste
16:12
Просмотров 163 тыс.
Bootstrap 5 Crash Course | Website Build & Deploy
1:18:48
How To Debug React Apps Like A Senior Developer
21:07
Build a productivity web app that's NOT a todo list
18:55