Closed ryanstua closed 9 years ago
Here is the code:
@ryanstua Please post a JS Fiddle or JS Bin of your example. Also, what version of Bootstrap did you upgrade from?
http://jsfiddle.net/ryanstua/cmc7v7q0/
I think i updated from version 3.1
After removing large amounts of irrelevant markup and doing minor tweaks: http://jsfiddle.net/vr0s5fny/1/
Let's try that one more time now that LMVTFY is back online: http://jsfiddle.net/ryanstua/cmc7v7q0/
Hi @cvrebert!
You appear to have posted a live example (http://fiddle.jshell.net/ryanstua/cmc7v7q0/show/light/), which is always a good first step. However, according to the HTML5 validator, your example has some validation errors, which might potentially be causing your issue:
img/Archways waiting room.png
for attribute src
on element img
: Illegal character in path segment: not a URL code point.img/Archways people.png
for attribute src
on element img
: Illegal character in path segment: not a URL code point.div
.frameborder
attribute on the iframe
element is obsolete. Use CSS instead.scrolling
attribute on the iframe
element is obsolete. Use CSS instead.marginheight
attribute on the iframe
element is obsolete. Use CSS instead.marginwidth
attribute on the iframe
element is obsolete. Use CSS instead.You'll need to fix these errors and post a revised example before we can proceed further. Thanks!
(Please note that this is a fully automated comment.)
And for the somewhat cleaned-up version?: http://jsfiddle.net/vr0s5fny/1/
Hi @cvrebert!
You appear to have posted a live example (http://fiddle.jshell.net/vr0s5fny/1/show/light/), which is always a good first step. However, according to the HTML5 validator, your example has some validation errors, which might potentially be causing your issue:
div
.You'll need to fix these errors and post a revised example before we can proceed further. Thanks!
(Please note that this is a fully automated comment.)
Thanks guys - however the buttons attached to the carousels on the modals which appear on the take tour button do not scroll the images next/prev?
Fixed stray </div>
: http://jsfiddle.net/vr0s5fny/2/
Hi @cvrebert!
You appear to have posted a live example (http://fiddle.jshell.net/vr0s5fny/2/show/light/), which is always a good first step. However, according to Bootlint, your example has some Bootstrap usage errors, which might potentially be causing your issue:
.modal-footer
must be a child of .modal-content
.modal-footer
must be a child of .modal-content
.modal-footer
must be a child of .modal-content
.modal-footer
must be a child of .modal-content
.modal-footer
must be a child of .modal-content
.modal-footer
must be a child of .modal-content
.modal-footer
must be a child of .modal-content
You'll need to fix these errors and post a revised example before we can proceed further. Thanks!
(Please note that this is a fully automated comment.)
After (for simplicity) removing the misplaced stray modal-footer
s: http://jsfiddle.net/vr0s5fny/3/
Aha! Your href
s are using the ID of your <div class="modal">
instead of the ID of the <div class="carousel">
like they're supposed to.
Thanks, are you able to provide an example?
Nope, spent enough time on this already.
Hi I've updated to the most recent version of Bootstrap.
I've been working on a website where I had a button that would link to a modal. In the modal body I had built a carousel that had buttons and it would scroll through the images no problem.
This now does now work and I don't know why. Does anyone have an explanation?