skip to Main Content

Html – Why isn't padding working in my Bootstrap 5.3 page?

Why is pe-5 not working? <head> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> </head> <body> <header class="bg-info"> <div class="row text-white"> <div class="col-md-6 p-4 pe-5 "> <h2 class="">Adhnan M Y</h2> </div> <div class="col-md-6"> </div> </div> </header> </body>

VIEW QUESTION

Css – How to make this background

I´am coding a website in Bootstrap 5, and I dont have idea how to correctly make this background (https://postimg.cc/xJymRpVf). Can someone help me please? Here is code of my section. <section class="py-5"> <div class="container"> <div class="row justify-content-center"> <div class="col-lg-9 col-12…

VIEW QUESTION

Jquery – Bootstrap4: autocomplete typeahead search, using ajax calls troubleshooting

I'm trying to use a text input as a search box, to retrieve search results via ajax calls, using bootstrap typeahead plugin <form class="form-inline ml-3" action="/phone-autocomplete/"> <div class="input-group input-group-sm"> <input class="form-control form-control-navbar typeahead" data-provide="typeahead" autocomplete="off" id="phone-autocomplete" type="search" name="searchstring" placeholder="search phone"…

VIEW QUESTION
Back To Top
Search