How can I add custom CSS in bagisto?if I want to change the look of search bar where should i keep the css file and where should I connect that ?
-
In the layout of shop folder there is master.blade.php in this you will find @stack('css') by using this you can overide css for this you have to @push('css')
<style>
ul.search-container {
border: 1px solid red !important;
}
</style>
@endpushapply on the page where you want to add css. you can give directly path here or you can create style here also!!!!!
-
Can you please brief more in detail exact path and where i can write custom css class