Customize Bootstrap 5 Utilities API - The Power Of Customizing
hey everyone and welcome back to daily,tuition in this tutorial we're going to,learn how to customize bootstrap 5 with,utility api as you know bootstrap comes,with many predefined classes just like w,100 for 100 with mr for margin right bg,white for white background color and so,on but what if you want to specify 30,width bootstrap has no class for that in,that case we can use utility api of,bootstrap and create our own customized,classes so let's see how to do it i'm,going to first open the visual studio,code editor and inside that i have here,a tutorial folder inside that i have,here index.html file inside this file i,have a simple html5 snippet with the,title customize bootstrap,now as you know bootstrap use sas as a,compiler to process the css,so we are using sas to create utility,api so when you open your visual studio,code editor just click on the extension,and here search for,sas,compiler,and here is the extension call live sas,compiler you just have to install this,extension in your vs code editor using,this extension you'll be able to compile,sas file into css very easily and,quickly i already have this just out of,that i'm going to install an extension,call,live,server this extension is going to allows,us to run the html file in the browser,with the live reload feature so whenever,you make any changes in your html file,you will get the updated result so you,just have to install this live server as,well now once you've done that just back,to your project and create this,index.html file with a simple html5,snippet here inside this body here i'm,going to create a container,with bg,dark cloth,and inside this container i'm going to,create h1 heading tag,with the text,customize the post wrap just down here,i'm going to simply add a division tag,for,for testing,classes,and right up here i'm gonna specify text,white let me save the changes and open,this file in the live server so i'm,gonna right click here and say open with,live server,when you install live server extension,you will get this option this will open,your index file in the live server now,just start that i'm going to install,bootstrap inside this project so let me,first open the terminal,and inside my terminal here i'm going to,execute a command called,npm,init to initialize this project as npm,project so i can install different,packages inside this project if you,don't know anything about npm or node i,have a dedicated course on it you can,check out that course from the link,provided in the description just for now,just type npm init hyphen y this will,create a package.json file inside your,project just out of that i'm going to,install bootstrap in this project so i'm,going to say here npm node package,manager iphone install and specify,bootstrap the name of the library when i,press enter,node package manager is going to install,bootstrap in my project you can notice,here inside this node modules i have the,bootstrap package if you want you can,download the bootstrap manually as w
alright then gang so as we've already,seen,bootstrap comes with all of its default,theme colors,our buttons are using this secondary,theme color,the cardboard we have here is using the,primary color etc,now bootstrap also comes with its own,default values for things like padding,margin font size borders etc on all of,the different elements and components,that we use,and that's really cool but sometimes you,might want to override,those default values and theme colors,with something more specific for your,website so in essence,you need to customize those values that,bootstrap uses,and bootstrap gives us a couple of ways,to do that the first way is just to make,your own,additional style sheet that can override,the bootstrap styles,for your different components and then,just add that style sheet after the,bootstrap one,in your html file however i'm not a huge,fan of that just overriding styles this,way,when there's another way to do it and,there is another way because we can also,use,custom sas files to update bootstrap,variables that control things like,colors,padding margin font size and all that,jazz,and that's the way i'll be showing you,how to customize bootstrap,and don't worry if you don't know too,much about sas we won't be diving too,deep,but if you want to learn more i've got a,whole sas tutorial and the link to that,is going to be,down below anyway in order to do this,in order to use sas files like this we,first need to install,bootstrap locally into our project using,npm the node package manager now to use,npm,you'll need node.js installed on your,computer,and to get that just head to nodejs.org,and hit the download,button you just go through the install,wizard and then you'll be able to use,npm like we're about to do so,assuming you have that installed what,you need to do is open up a terminal,in your project directory i'm just doing,it here in vs code,and then first type npm init to create,a package.json file now this file,keeps track of any dependencies like,bootstrap that we install,and by the way if you do want to learn,more about npm and node.js,i've got a whole crash course available,and again that link,is going to be down below the video,anyway let's answer some of these,questions about our project,so i'm pretty much just gonna accept the,default values for most of these,and then once you're done it's gonna,create your package.json file which,like i said will list all of your,project dependencies,when you install them using npm so now,let's,install bootstrap so again in the,terminal,we type this time npm install,bootstrap and then you press enter and,this might take a minute or so to,install,okay then so once that's done you'll see,in your package.json file a new,dependency,listed bootstrap you're also going to,see this,node modules folder over here this is,where bootstrap was installed to,and we can see that bootstrap folder,inside if we open up that folder we can,then see a dist folder,and that contains the final minified css,bu
After seeing the first section, I believe you have a general understanding of eg-theme-bs5 theme shopify
Continue the next second section about eg-theme-bs5 theme shopify
Changing Colors on Bootstrap with SASS
Changing Colors on Bootstrap with SASS
hello guys this is German so in this,video I wanted to talk about boostrap,and the reason that I was watching a,couple of videos on bootstrapping,YouTube and I saw a lot of people saying,that when you join the bootstrap,bandwagon you tend to use the same tools,and the same components and that that's,the reason so many people so many,websites are so similar because when you,create these components you just go to,the documentation and you copy paste,those components and then you create a,website the the layout just based on,what you see on bootstrap and and a lot,of people were saying that that's wrong,and that doesn't reason to use bootstrap,but then nice I realized that that that,was happening to me as well but I,noticed that they have something called,theming and that you have to use sass,and in order to manipulate the website,the components the variables and all,that so I'm gonna show you how easy it,is to use different colors for example,colors for your buttons,you can see that you know that if you,have used booster before you know that,primary is blue you have success which,is green and so on so you don't have to,you can name your primary colors but use,a different type of blue if you want to,something that you cannot do using,classes because bootstrap is a,class-based system so you can create or,recreate your own variables so you can,have different components alright so,that's what we're gonna do now I'm gonna,go to get kustra,bootstrap Femi and here you can see that,you have to import these modules,but then you have you need to have your,own it is best to have your own a CSS,file so you can create your CSS from,there and that is going to be rendered,on your main CSS file what you cannot do,is just go to these a CSS files and and,change the variables from there is not,it's not a good idea to do that so what,we're gonna do here is that we're going,to open in your folder and we're gonna,go to see sass learning and then we're,going to create our first in that index,dot HTML and then another one called,main dot CSS another one called main dot,CSS alright so here we're gonna create,order order plate okay so here we're,gonna call this one changing colors on,the bootstrap nice now what we're gonna,do is just to link the CSS which is main,dot CSS all right I'm gonna save this,one and we're gonna have an h1 here,learning to use sass bootstrap okay save,it I'm gonna open this with my live,server and you can see here so now we,are going to change our h1 and then,we're gonna put here all right,all right cool,so now what we're gonna do is we're,gonna go to bootstrap and then we're,gonna go to one of the components this,one is gonna be the Jumbotron I love it,because it has these this little button,and we're gonna use this to explain how,to change it so we're gonna put our,Jumbotron there cool so I'm gonna remove,this right and now I'm gonna put it,right here on the main scss right but,what I'm gonna do is that I'm gonna go,to the terminal and then I'm go
After seeing the second section, I believe you have a general understanding of eg-theme-bs5 theme shopify
Continue the next third section about eg-theme-bs5 theme shopify
VSCode Tutorial: Adding Bootstrap Version 5 to your web project
VSCode Tutorial: Adding Bootstrap Version 5 to your web project
in this tutorial we're going to learn,how to add,bootstrap,library files to our,web application,using vs code,bootstrap allows for us to build,responsive websites,faster with rich experiences leveraging,both javascript and css components,in a previous video i shared how to,leverage the cdn and bring in the,bootstrap css and javascript,frameworks,into your application,in this,tutorial we're going to actually,download them by going to the download,site,for bootstrap,and we're going to locate the download,for the compiled css and javascript,and click download,once it's downloaded we're going to go,to the download folder,on your computer,and we're going to extract the zip file,that we downloaded,and i'm going to right click and extract,and inside of the extracted folders,you're going to find css,and javascript folders,inside of each of those will be all of,the framework files necessary,to,work with bootstrap now i'm going to,copy those,here,and i'm going to bring them into my,workspace,for,my web application that i'm working on,in vs code,so real quick here i'm going to pull it,up in vs code so you can see,i'm currently working in this bootstrap,tutorial folder i have no other folders,there currently,inside of that so what i'm going to do,is go to my,explorer,and i'm going to go to that folder,and the only thing in there currently is,my index page,and i'm going to paste in the bootstrap,library,files the css and the javascript folder,and you'll see in real time,that those folders showed up in my vs,code,navigation pane,so what i'm going to do next is i'm,going to use,the references i'm going to bring in the,style sheet css aspect the bootstrap and,i'm going to bring in the javascript um,part of bootstrap so,here,with the first thing i'm end up doing,i'm going to keep that same meta,viewport in here which is,necessary for,mobile design first as part of using,this framework as you saw in the,previous video but the first thing i'm,going to do now is i'm going to use the,link,tag,and an href here is going to,reference my css folder,and,when you do that you're going to see the,intellisense here show me all the files,that are in that folder and just like i,did when i use the cdn i'm going to use,the bootstrap library,where we have the,bootstrap.min.css so we're going to look,for,bootstrap,dash min.css and it's here in your list,that's the ideal one that we're going to,end up using for this demonstration,so we're going to bring that in okay,and,we'll just,finish off our,link tag,and then the next thing we're going to,do is we're going to bring in the script,for the javascript and i accidentally,had an extra closing script there tagged,there that i didn't need,so what i'm going to end up doing here,now is similar to how i just brought in,the,css i'm going to bring in the script tag,okay,and the source is the attribute for our,script tag a little different than our,link tag,we're going to use the js folder,and here,we're looking for,bootstrap,dot bundle dot j
After seeing the third section, I believe you have a general understanding of eg-theme-bs5 theme shopify
Continue the next fourth section about eg-theme-bs5 theme shopify
Learn Bootstrap 5 and SASS by Building a Portfolio Website - Full Course
Learn Bootstrap 5 and SASS by Building a Portfolio Website - Full Course
bootstrap is one of the most popular css,frameworks,and sas is one of the most popular css,preprocessors,in this course patrick will teach you,how to create a portfolio website,using bootstrap 5 and sas hey,everyone how you doing thanks for,checking out this video my name is,patrick from vex accord,so in this video we're going to build a,multi-purpose layout with bootstrap,version 5,and sas and the first thing you're going,to do is to learn how to set up the sas,environment,so that can be able to work with sas,then you're going to start building the,project for a company called patrick's,so we're going to start with the navbar,which is the topmost part of this,layout and then you're going to create a,second section called the intro section,so here you're going to create a brief,introduction about the company,and then on the right you're going to,create this pop-up so you have this,animated play button and once you click,then a video will pop up from youtube or,any other source that you choose from,they're going to create another section,called services so we're going to,showcase some of the services,our fake company is offering from there,going to create another section called,testimonials so we're going to showcase,what our clients are saying about,the company and then from there we're,going to create another section called,frequently asked questions so here we're,going to use,bootstrap component called accordion,so once you click then the question,collapses and,reveals the answer from there we're,going to create another section,for latest work so here going to,showcase some of the latest work of a,company is,has created and then we have these,filtering buttons,for filtering the categories for the,portfolio from there we're going to,create another section called get,started,so this one is similar to what you call,call to action so we have this form,and then finally we have the bottom part,of the layout which is the,footer then from there going to make,sure that our layout is fully responsive,across variety of screen devices,so before we get started make sure you,have some basic knowledge,in html and css so stick around and,let's get started,welcome back in this video we are going,to set up the sas environment,and this is to make sure that we have,the correct environment for working,with sas so the first one is to install,node.js it's an open source server,environment,nodejs allows you to run javascript on,the server and it's free and it runs on,various platforms,so if your machine is not yet installed,with node.js you can head over to the,office website which is nodejs.org,so here on the homepage for those who,are using windows we have a download,recommended for most users and this one,is more than enough,for this project alternatively you can,also download the current one which has,the latest features,for other platforms like linux and mac,you can check on this link that says,downloads so here you need to download,the one compatible with your p
After seeing the fourth section, I believe you have a general understanding of eg-theme-bs5 theme shopify
Continue the next fifth section about eg-theme-bs5 theme shopify
Bootstrap 5 Installation on Laravel along with Utility API Example
Bootstrap 5 Installation on Laravel along with Utility API Example
hey there so in this video we will talk,about how we can get started with,bootstrap,5 which is recently released on laravel,so i will create a new laravel project,first,once the laravel project is created i,will,open it in my,vs code,if you see the package.json file you can,see that,there is no bootstrap dependency as of,now in this project,there are two ways to install bootstrap,on a laravel project either you can,install it via npm directly or you can,use the,composer you um the laravel ui,package given to you by laravel so i,will utilize that,install a dependency named laravel,ui,once that is installed i can use the php,artisan ui command,to install bootstrap on my project along,with that i,also want the layout file so that i can,utilize it to,demonstrate few of the bootstrap things,to you so i will also install the,auth scaffolding with that once that is,done,you can see that the bootstrap version,currently,laravel is installing is 4.6 but what we,want is,five so what we will do is from here i,can say npm,install boot strap at the rate,next which will install the latest,version and also,the latest version of bootstrap that is,bootstrap 5 has a dependency of,popper.js so i'll install that save the,dependencies to dev,all right so we have installed the,dependencies next step we will run,npm run dev so that dependencies will be,compiled into normal css and js,since we have run this first time it,needs to require,additional dependencies so i will run,npm run,dev again,and now it has compiled to show you how,it works,is if you already don't know is so here,in,my laravel mix i have defined,my scss app.css file to be compiled,into this folder public css and my,app.js file to be compiled into app,public js folder so if you go into,resources css,sas app.scss you can see that we are,importing the bootstrap dependency here,and,in js app.js we are importing the,bootstrap js file,so these get compiled into the normal,css and the js which browser understands,so what we will do is to test a few,things,i will create a,dummy route file,named test and it simply returns a,view file,named test,i will create a new view file in my,resources views directory,test.blade.php,and i will copy the content of homeblade,i'll remove all of this thing to make,sure that,we have imported the boost boots we have,installed the bootstrap correctly,what i will do is i will go into the,bootstrap,five documentation i'll just grab any,dummy component,so we are looking at the bootstrap five,document and i'll just grab any of these,alert,let's run it in the browser,booth step 5 laravel is the project name,and if i go to the test route it shows,me the,alert so that means we have installed,bootstrap correctly,and if you look into the source file,app.css,we are currently using the bootstrap,version 5.,now look at let's look at some of the,customization that you can do with,bootstrap 5.,bootstrap 5 is a major improvement from,the version bootstrap 4,and if you have worked with tailwind css
After seeing the fifth section, I believe you have a general understanding of eg-theme-bs5 theme shopify
Continue the next sixth section about eg-theme-bs5 theme shopify
Joomla! User Groups AU - 2021-02 : Bootstrap 5 primer
Joomla! User Groups AU - 2021-02 : Bootstrap 5 primer
um so that's vladimir,he's from drupal land,um in brisbane so um vladimir helped out,uh,what was partaking in uh pizza bugs and,fun last year,in october with stewart and myth um so,he's,he's i haven't worked out whether he's,just gonna have the taste of,jewelry um or whether he's a full-blown,drupal uh megalomaniac that,codes like there's nothing else going on,but he can introduce himself there,and then have we also got janna gonna,talk later as well yep yeah okay,uh and so john is gentlemen uh he's,uh works with play to me at,tomato elephant studio is that right um,so i'm sure,i'll say more about that um so after,that's the play will be a short session,on a few things that um,jonas found out on a couple of topics,i've forgotten that i think that was in,the spiel but we'll get to that later,um and then we'll be covering a few more,things on um on joomla,so i'll hand over to that if everyone,can,mute and put questions in the chat,uh we'll come back to those at the end,of the session and,yeah i look forward to hearing more,about what bootstrap five actually does,and then anyone that's super keen can,get up at,six o'clock tomorrow morning and joined,the um,uh drama uk guys and they're actually,the,a couple of the programmers that have,put bootstrap into drama four,um so they know what the impact is and,bootstrap on journal 4. um,but hopefully vladimir's about to tell,us,what it is that all this means i'll,hand you over,thank you patrick,thank you stuart is there a way to,get rid of the loop,okay cool that's good,sorry just some technical issues,let's share my screen,excellent can everyone see my screen,i still can hear feeling some feedback,from someone's mic,can i say what's on the screen,i muted you,okay and uh,yeah so if you have any questions feel,free to interrupt me,anytime so,this is going to be a presentation,mostly about bootstrap 5.,so first about myself so i'm vladimir,and i'm based in brisbane work for,tomata elephant studio i do,drupal as a day-to-day job but before,that,i was actually doing quite a bit of,joomla back in the day like late 2000s,i'm also quite passionate about few,other open source projects,so gitlab bootstrap drupal and docker a,few of them,that i either try to contribute or,contribute to this day actually a fun,fact is uh,when i discovered joomla back in the,company uh the company's policy,i think that was around 2006 or 2007.,the company's policy was to,uh to only run oracle databases so i,thought,i can do that because we're using joomla,at the time for actually bug reporting,system so build quickly bug reporting,system was so fascinated with,discovering joomla,so i actually went on a mission to,migrate,joomla to oracle database well the thing,never happened,but it was a good attempt and actually,trying to,learn the estimation of the large open,source projects,now to bootstrap so today we're going to,talk about what bootstrap is,what's new in bootstrap five,and and,we talk a bit about joomla and bootstrap,so first of
After seeing the sixth section, I believe you have a general understanding of eg-theme-bs5 theme shopify
Continue the next seventh section about eg-theme-bs5 theme shopify
Buy With Prime : Amazon Dominance in Ecommerce (Amazon news)
Buy With Prime : Amazon Dominance in Ecommerce (Amazon news)
amazon just quietly added what might be,the single most important feature yet,amazon prime is one of the best,innovations by amazon that capture,people into getting products the next,day or the same day without waiting,weeks or days like we all got used to,before with the ecommerce space amazon,might brought the next big thing with,buy with prime what it is how it works,and how it can change the e-commerce,space again all in this video,guys before we start with the video,quick favor just like this video it will,really help me reach more people and,support my hard work that i invest day,and night on this channel now what is,buy with prime uh this announced few,months ago but i wanted to wait and see,what's going on how it's going to affect,what people are saying about it but it's,basically another big thing from amazon,another innovation and why it's a big,thing because instead of just working,with their own marketplace and platform,they're now expanding uh their reach and,expanding the reach to shopify in uh,independent uh e-commerce stores by,having this feature that i'm going to,show you live how it looks and how it,works and it's not just expanding an,exposure giving more exposure to,millions of millions of people to,products on amazon it actually,make,e-commerce website owners uh to realize,that they cannot ignore the fact that,they need to have their inventory by,amazon so it's basically even if you,have your own shopify store you don't,need to deal with their inventory,anymore because the fulfillment will be,done automatically if they they wanted,to leave the website as far as i know,and everything will be as smooth,experience and amazon will you will,enjoy the fulfillment the amazing,fulfillment services of amazon but let's,read their official uh website and,information info page about what is buy,with prime so it's a new way to grow to,grow your dtc store you grow your,e-commerce business by attracting and,converting shoppers by the way people,will convert higher because it says get,it tomorrow with prime compared to a,regular fulfillment that will be much,slower so it help e-commerce stores,because they will get it faster and then,it's tying you as an e-commerce owner if,you don't sell already on amazon with,amazon and expose you to amazon services,so this is a really uh something you,know that uh they expanded their,infrastructures and warehouses and now,they're ready to offer these to old,stores i think it's a brilliant move and,i think with time it will be something,that uh no one like no one can neglect,or ignore you know so attract almost,first of all you attract amazon shoppers,everyone that already have prime,and they see it on the website they have,much more confidence it's like they are,buying it with amazon they have the,confidence like they are buying it from,amazon um remarket to engaged amazon,audiences to relevant ads and use the,buy with prime badge in your marketing,convert shopper with fast free delivery,that's a big thi
After seeing the seventh section, I believe you have a general understanding of eg-theme-bs5 theme shopify
Continue the next eighth section about eg-theme-bs5 theme shopify
Send emails from a HTML Contact Form
Send emails from a HTML Contact Form
hello internet and welcome to another,one of my videos,this time all about making a contact,form that actually sends,the email so if you're anything like me,and love to watch web dev tutorials,you might notice there's so much out,there on the internet about contact,forms,how to create them so how to make them,in html and css,but there's not that much out there,about how to actually you know like,link up the logic for it to do something,so i am,here to show you how to do that in a,super,simple way i'm gonna be doing this with,html,and just html okay so i'm gonna be,making the contact form in html i'm,gonna be then choosing,what kind of inputs i wanna have so,perhaps i wanna,have like a first name input and then an,email input so the person can put in,their emails so i,know to email them back and then just,like a little text form or something,and then a submit button now the submit,button will essentially send whatever we,put in,to your email address so we'll be,testing that out too,and then send you to a thank you page,this tutorial is a great way to,essentially,hide your email address to the i guess,average user's eyes we're going to be,taking away the email address that you,sometimes put,on your static web page and hiding it,behind a form,okay so if you inspect the page it's,going to be there okay,so hopefully that makes sense if not,don't worry because i'm going to be,showing you how to do this step by step,contact form let's go please do like and,subscribe to my,channel it would really mean a lot as,that is how i can keep creating,more content for you guys so thanks very,much and,let's do it,okay so to start off i just have,a simple html file,in my project that i have called contact,form,it's just got some basic boilerplate,html for us,this is what we're going to start with,let's go,now the first thing that i want to do is,actually refer to the documentation that,i'm going to be using,for this i'm going to be using form,submit,i'm using form submit for no other,reason that it's the only one that i,really know that allows me to,edit the thank you forwarding page,relatively,easily they are free to use so,if you do use them please go ahead and,sponsor them support them i really do,appreciate anyone,who opens up their work to us like this,form submit essentially allows us to,connect our form,to their form endpoint and they will,email out the submissions,for us so this is going to be super easy,like i said,we are just going to be using html,there are some other options available,but what's the point i mean,html is the easiest let's go ahead and,do that,so to start off i'm simply going to copy,this here,and put it in our project,so this will essentially create a form,for us with an,action that uses the form submit,endpoint,and i'm just going to put my email,address in here,so i'm just gonna put in my generic,email address,that i use so people can contact me and,don't forget to keep the method as,post okay so if i now save this file,and view this in
After seeing the eighth section, I believe you have a general understanding of eg-theme-bs5 theme shopify
Continue the next ninth section about eg-theme-bs5 theme shopify
How To Create Read More / Show More Button Using A Little JavaScript
How To Create Read More / Show More Button Using A Little JavaScript
so what's up guys welcome to another,video today we are going to create a,read more button so as you can see that,we have a paragraph here,and after the pregraph we have some dots,and also it's saying that read more if,you want to read more the text or the,playground,you can click the button so what you can,do actually,if i click the button now i don't have,the dots and i also have the full text,of our program,so as you can see i also have the read,last button so whenever i'll click it,will go back to the initial state of our,breakup,so that's what we are going to make in,this video hope you will like it so no,more talk let's dive into it,so today is the day 9 of our 30 days 30,submits,and for the day 9 we are going to create,a read more button,so if you are interested to check out,all this repo or all these submits that,i did before,you can check out this repo i'll link it,in this description,so check out and if you come please give,it a star,and you can check out all these things,that i did,in this 30 days 30 submits challenge,so let's get back to our code here,so in our html first of all let's create,a boilerplate,and here let's say that in the body i,will have just a,h1 tag,and after that i will have a pre-graph,which will have a something like,100 word so you can just say,something like bu toggle rep,so it will wrap the all word as you can,see and you can see,all the word that we have in the project,so now in the program let's say that i,want to hide,this amount of word when,we will initially see this breakup so,what i need to do actually,i need to wrap this word in a s pen so,let's,do that so create s pen and,here just cut the closing tag,and just paste it here so now we wrapped,all this word with the span,and in this s pen i will have a class,something like,more text,and in this program i will also have a,class something like,text and also we will have a button,in the end of our program which will say,something like,read more button so let's get a button,here,and also let's have a class here so,class will be,read more buttons,so that's the class for our button and,for the button text i will just say that,read more so now if i save and refresh,we can see the text and the button,so after that let's come here and link,our style sheet,so link css and,now we have the style sheet linked in,our,html so in our style sheet first of all,let's come to the body and let's say,that font family will be the monster nut,so i already have the mod set up so,right and text align will be,center so not center actually let's say,that justify,and max width wanna have 600 pixel,and margin 0 auto,and background color so i will have a,blackish background color and the color,will be the white,so let me copy the color and paste it,here and the color,will be the allies blue so now as you,can see that we have a black background,and also we have the allies blue color,in the font so after that let's come to,the text which is the playgroup,so class text,and here i will jus
Congratulation! You bave finally finished reading eg-theme-bs5 theme shopify and believe you bave enougb understending eg-theme-bs5 theme shopify