6,473 questions
0
votes
0
answers
75
views
Safari Web Extension - Failed to load Bootstrap files in popup.html
I'm trying to include Bootstrap in my extension's popup page. I'm not using the CDN links, I have the files downloaded and placed in the extension folder alongside popup.html
...
sfExt Extension/
├─ ...
1
vote
0
answers
53
views
Bootstrap CSS auto-completion is not working in Visual Studio
I am working on an ASP.NET Core project in Visual Studio 2026 and experiencing an issue with HTML/CSS IntelliSense in my Razor (.cshtml) views.
The Issue: When I try to type Bootstrap classes inside ...
1
vote
1
answer
114
views
bootstrap 5 Equal Height Columns
I want to set two columns to be equal. This means the menu column should be the same height as the main column, which changes depending on the browser window size. Below the image is a typed.js script ...
0
votes
1
answer
220
views
bootstrap 5 img fluid not resize image [closed]
I have a problem with image, when I add class img-fluid to img, image not resize when I change browser size. I have checked bootstrap 3 with img-responsive and this is the same. I have checked styles (...
1
vote
2
answers
115
views
How to toggle bootstrap nav pane from a button
I have successfully implemented a tabbed pane design with collapse for small screens.
On one of the panes I would like to include a button which toggles to another pane.
I have tried unsuccessfully ...
0
votes
0
answers
103
views
How can I properly configure Form.io <form-builder>?
What I did so far:
I created a fresh Angular 20 project
I installed Form.io related dependencies
I installed FontAwesome 4 dependency (and updated angular.json)
I changed following files
// app....
0
votes
1
answer
40
views
How to invalidate form if no checkboxes selected?
My form includes 3 checkboxes.
<fieldset class="mb-5">
<legend class="h4">Question?</legend>
<div class="input-group has-validation mb-3"&...
Advice
0
votes
0
replies
60
views
As a developer, which would you choose to build with Builder or Template?
AI Website Builders vs. Ready-Made Templates: Which offers better long-term scalability and Affordability ?
I have been working in the SEO and admin templates industry since 2017, and I am seeing a ...
3
votes
2
answers
129
views
How to close Bootstrap info using click event in Angular 18
I am trying to show info message when we click on the info button. When I mouse-over the button, the info message is showing. I want to show it only if I click the info button - not on mouse-over.
...
Advice
0
votes
1
replies
47
views
How to toggle icon/image of Bootstrap button with jQuery and data attributes?
I have this button that toggles it's text from "Show more..." to "Show less..." whenever it's clicked:
<button
class="btn btn-sm btn-secondary"
title="...
0
votes
0
answers
26
views
Flexbox - varying widths / layout for two divs on left hand side [duplicate]
Not 100% certain if this can be done with flexbox, but wanted to check before trying other more clunky solutions. Need to find a way to make my layout work in desktop and tablet both.
The desktop ...
2
votes
0
answers
33
views
how are dartsass variables within bootstrap supposed to work?
I want my own preferred fonts prepended to those bootstrap configures.
In earlier times I did this:
$_tmp_list: $font-family-sans-serif;
$font-family-sans-serif: "Nunito";
$headings-font-...
1
vote
1
answer
63
views
How to add nesting (or rowspan?) to ordered cols in Bootstrap
I want to the achieve this layout in Bootstrap-5.
I've got the Mobile layout working and the Divs reorder BUT I can't figure how to get the Basket and Search Cols to Nest on the right with the Logo ...
2
votes
1
answer
201
views
Access a CSS variable in JavaScript
I'm using PHP to generate my website's pages, Bootstrap 5 to style the pages and Stripe to process customer payments. I'd like to style Stripe's payment elements to match the underlying theme of my ...
1
vote
3
answers
87
views
Hide Bootstrap 5 Modal in Ember.js
I have an Ember.js application that shows a modal. After the form submission in the modal is successful, I want it to hide the modal.
Bootstrap has a .hide() function on modals to make it hide. ...