Carousel to display full width of screen for small screens onlyBootstrap Carousel - Full width, fixed height images with contained controls?Owl-carousel responsive crop width on resize jquery cssjQuery Text Resizing Plugin Only Applied to First Slide of a Bootstrap CarouselBS3 carousel + animate.min.css not working perfectly in FirefoxCannot display HTML stringBootstrap carousel how to hide one item from slider on xs size?Load an img src as a background image for the Div it resides in with jQuerycarousel caption based on url hashBootstrap 4 fullscreen carousel bug: captions are centered with a delayHeight of images used within carousel is not relating to the div used to hold the carousel
What is the highest possible temporary AC at level 1, without any help from others?
Colloquialism for “see you later”
Prime Sieve and brute force
How can I end combat quickly when the outcome is inevitable?
Compiling C files on Ubuntu and using the executable on Windows
Winning Strategy for the Magician and his Apprentice
Is counterpoint still used today?
Soft question: Examples where lack of mathematical rigour cause security breaches?
What speaks against investing in precious metals?
How can this tool find out registered domains from an IP?
How to tell your grandparent to not come to fetch you with their car?
Logarithm of exponential
Why doesn't Adrian Toomes give up Spider-Man's identity?
1980s live-action movie where individually-coloured nations on clouds fight
How to handle self harm scars on the arm in work environment?
Non-disclosure agreement in a small business
Zeros of the Hadamard product of holomorphic functions
Is using haveibeenpwned to validate password strength rational?
Paying more mana for a Flashed creature
Overlapping String-Blocks
A IP can traceroute to it, but can not ping
Are there any important biographies of nobodies?
f-type expansion
Arriving at the same result with the opposite hypotheses
Carousel to display full width of screen for small screens only
Bootstrap Carousel - Full width, fixed height images with contained controls?Owl-carousel responsive crop width on resize jquery cssjQuery Text Resizing Plugin Only Applied to First Slide of a Bootstrap CarouselBS3 carousel + animate.min.css not working perfectly in FirefoxCannot display HTML stringBootstrap carousel how to hide one item from slider on xs size?Load an img src as a background image for the Div it resides in with jQuerycarousel caption based on url hashBootstrap 4 fullscreen carousel bug: captions are centered with a delayHeight of images used within carousel is not relating to the div used to hold the carousel
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a carousel that is centered and only takes half the screen by adding this to the class "w-50". When the browser resizes to a smaller screen, like a mobile device, I want that carousel to take up the whole width of the screen. To do this I'm sure I'll need to find a way to change that to "w-100", but I'm not sure how to go about doing that.
I have tried to play around with @media in CSS, but haven't had any luck.
<div id="catalogueSelection">
<div id="catalogueCarousel" class="carousel slide w-50" data-ride="carousel" data-interval="5000">
<ol class="carousel-indicators">
<li data-target="#catalogueCarousel" data-slide-to="0" class="active"></li>
<li data-target="#catalogueCarousel" data-slide-to="1"></li>
<li data-target="#catalogueCarousel" data-slide-to="2"></li>
<li data-target="#catalogueCarousel" data-slide-to="3"></li>
<li data-target="#catalogueCarousel" data-slide-to="4"></li>
<li data-target="#catalogueCarousel" data-slide-to="5"></li>
<li data-target="#catalogueCarousel" data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img id="franceImage" class="d-block w-100" src="../images/france.jpg">
<div class="carousel-caption countryCaption">
<h2>France</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img id="italyImage" class="d-block w-100" src="../images/italy.jpg">
<div class="carousel-caption countryCaption">
<h2>Italy</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="../images/spain.jpg">
<div class="carousel-caption countryCaption">
<h2>Spain</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img id="lebanonImage" class="d-block w-100" src="../images/lebanon.jpg">
<div class="carousel-caption countryCaption">
<h2>Lebanon</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img id="southAfricaImage" class="d-block w-100" src="../images/south_africa.jpg">
<div class="carousel-caption countryCaption">
<h2>South Africa</h2>
<p>See Products</p>
</div>
</div>
<div id="southAmericaImage" class="carousel-item">
<img class="d-block w-100" src="../images/south_america.jpg">
<div class="carousel-caption countryCaption">
<h2>South America</h2>
<p>See Products</p>
</div>
</div>
<div id="domesticImage" class="carousel-item">
<img class="d-block w-100" src="../images/united_states.jpg">
<div class="carousel-caption countryCaption">
<h2>Domestic</h2>
<p>See Products</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#catalogueCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#catalogueCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
#catalogueCarousel
margin: auto;
border: 3px solid;
border-color: black;
.carousel-inner
.carousel-item img
height: 500px; !important
overflow: hidden;
opacity: 0.9;
opacity: 0.8;
.countryCaption h2
color: red;
font-family: 'Prosto One', cursive;
opacity: 1; !important
.countryCaption p
color: darkred;
font-weight: bold;
font-family: 'Prosto One', cursive;
font-size: 20px;
opacity: 1; !important
Above is a snippet of the carousel html code, as well as it's stylesheet.
Any tips or ideas to help me resolve this is appreciated.
Thank you.
html css bootstrap-4 carousel
add a comment |
I have a carousel that is centered and only takes half the screen by adding this to the class "w-50". When the browser resizes to a smaller screen, like a mobile device, I want that carousel to take up the whole width of the screen. To do this I'm sure I'll need to find a way to change that to "w-100", but I'm not sure how to go about doing that.
I have tried to play around with @media in CSS, but haven't had any luck.
<div id="catalogueSelection">
<div id="catalogueCarousel" class="carousel slide w-50" data-ride="carousel" data-interval="5000">
<ol class="carousel-indicators">
<li data-target="#catalogueCarousel" data-slide-to="0" class="active"></li>
<li data-target="#catalogueCarousel" data-slide-to="1"></li>
<li data-target="#catalogueCarousel" data-slide-to="2"></li>
<li data-target="#catalogueCarousel" data-slide-to="3"></li>
<li data-target="#catalogueCarousel" data-slide-to="4"></li>
<li data-target="#catalogueCarousel" data-slide-to="5"></li>
<li data-target="#catalogueCarousel" data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img id="franceImage" class="d-block w-100" src="../images/france.jpg">
<div class="carousel-caption countryCaption">
<h2>France</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img id="italyImage" class="d-block w-100" src="../images/italy.jpg">
<div class="carousel-caption countryCaption">
<h2>Italy</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="../images/spain.jpg">
<div class="carousel-caption countryCaption">
<h2>Spain</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img id="lebanonImage" class="d-block w-100" src="../images/lebanon.jpg">
<div class="carousel-caption countryCaption">
<h2>Lebanon</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img id="southAfricaImage" class="d-block w-100" src="../images/south_africa.jpg">
<div class="carousel-caption countryCaption">
<h2>South Africa</h2>
<p>See Products</p>
</div>
</div>
<div id="southAmericaImage" class="carousel-item">
<img class="d-block w-100" src="../images/south_america.jpg">
<div class="carousel-caption countryCaption">
<h2>South America</h2>
<p>See Products</p>
</div>
</div>
<div id="domesticImage" class="carousel-item">
<img class="d-block w-100" src="../images/united_states.jpg">
<div class="carousel-caption countryCaption">
<h2>Domestic</h2>
<p>See Products</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#catalogueCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#catalogueCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
#catalogueCarousel
margin: auto;
border: 3px solid;
border-color: black;
.carousel-inner
.carousel-item img
height: 500px; !important
overflow: hidden;
opacity: 0.9;
opacity: 0.8;
.countryCaption h2
color: red;
font-family: 'Prosto One', cursive;
opacity: 1; !important
.countryCaption p
color: darkred;
font-weight: bold;
font-family: 'Prosto One', cursive;
font-size: 20px;
opacity: 1; !important
Above is a snippet of the carousel html code, as well as it's stylesheet.
Any tips or ideas to help me resolve this is appreciated.
Thank you.
html css bootstrap-4 carousel
add a comment |
I have a carousel that is centered and only takes half the screen by adding this to the class "w-50". When the browser resizes to a smaller screen, like a mobile device, I want that carousel to take up the whole width of the screen. To do this I'm sure I'll need to find a way to change that to "w-100", but I'm not sure how to go about doing that.
I have tried to play around with @media in CSS, but haven't had any luck.
<div id="catalogueSelection">
<div id="catalogueCarousel" class="carousel slide w-50" data-ride="carousel" data-interval="5000">
<ol class="carousel-indicators">
<li data-target="#catalogueCarousel" data-slide-to="0" class="active"></li>
<li data-target="#catalogueCarousel" data-slide-to="1"></li>
<li data-target="#catalogueCarousel" data-slide-to="2"></li>
<li data-target="#catalogueCarousel" data-slide-to="3"></li>
<li data-target="#catalogueCarousel" data-slide-to="4"></li>
<li data-target="#catalogueCarousel" data-slide-to="5"></li>
<li data-target="#catalogueCarousel" data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img id="franceImage" class="d-block w-100" src="../images/france.jpg">
<div class="carousel-caption countryCaption">
<h2>France</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img id="italyImage" class="d-block w-100" src="../images/italy.jpg">
<div class="carousel-caption countryCaption">
<h2>Italy</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="../images/spain.jpg">
<div class="carousel-caption countryCaption">
<h2>Spain</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img id="lebanonImage" class="d-block w-100" src="../images/lebanon.jpg">
<div class="carousel-caption countryCaption">
<h2>Lebanon</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img id="southAfricaImage" class="d-block w-100" src="../images/south_africa.jpg">
<div class="carousel-caption countryCaption">
<h2>South Africa</h2>
<p>See Products</p>
</div>
</div>
<div id="southAmericaImage" class="carousel-item">
<img class="d-block w-100" src="../images/south_america.jpg">
<div class="carousel-caption countryCaption">
<h2>South America</h2>
<p>See Products</p>
</div>
</div>
<div id="domesticImage" class="carousel-item">
<img class="d-block w-100" src="../images/united_states.jpg">
<div class="carousel-caption countryCaption">
<h2>Domestic</h2>
<p>See Products</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#catalogueCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#catalogueCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
#catalogueCarousel
margin: auto;
border: 3px solid;
border-color: black;
.carousel-inner
.carousel-item img
height: 500px; !important
overflow: hidden;
opacity: 0.9;
opacity: 0.8;
.countryCaption h2
color: red;
font-family: 'Prosto One', cursive;
opacity: 1; !important
.countryCaption p
color: darkred;
font-weight: bold;
font-family: 'Prosto One', cursive;
font-size: 20px;
opacity: 1; !important
Above is a snippet of the carousel html code, as well as it's stylesheet.
Any tips or ideas to help me resolve this is appreciated.
Thank you.
html css bootstrap-4 carousel
I have a carousel that is centered and only takes half the screen by adding this to the class "w-50". When the browser resizes to a smaller screen, like a mobile device, I want that carousel to take up the whole width of the screen. To do this I'm sure I'll need to find a way to change that to "w-100", but I'm not sure how to go about doing that.
I have tried to play around with @media in CSS, but haven't had any luck.
<div id="catalogueSelection">
<div id="catalogueCarousel" class="carousel slide w-50" data-ride="carousel" data-interval="5000">
<ol class="carousel-indicators">
<li data-target="#catalogueCarousel" data-slide-to="0" class="active"></li>
<li data-target="#catalogueCarousel" data-slide-to="1"></li>
<li data-target="#catalogueCarousel" data-slide-to="2"></li>
<li data-target="#catalogueCarousel" data-slide-to="3"></li>
<li data-target="#catalogueCarousel" data-slide-to="4"></li>
<li data-target="#catalogueCarousel" data-slide-to="5"></li>
<li data-target="#catalogueCarousel" data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img id="franceImage" class="d-block w-100" src="../images/france.jpg">
<div class="carousel-caption countryCaption">
<h2>France</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img id="italyImage" class="d-block w-100" src="../images/italy.jpg">
<div class="carousel-caption countryCaption">
<h2>Italy</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="../images/spain.jpg">
<div class="carousel-caption countryCaption">
<h2>Spain</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img id="lebanonImage" class="d-block w-100" src="../images/lebanon.jpg">
<div class="carousel-caption countryCaption">
<h2>Lebanon</h2>
<p>See Products</p>
</div>
</div>
<div class="carousel-item">
<img id="southAfricaImage" class="d-block w-100" src="../images/south_africa.jpg">
<div class="carousel-caption countryCaption">
<h2>South Africa</h2>
<p>See Products</p>
</div>
</div>
<div id="southAmericaImage" class="carousel-item">
<img class="d-block w-100" src="../images/south_america.jpg">
<div class="carousel-caption countryCaption">
<h2>South America</h2>
<p>See Products</p>
</div>
</div>
<div id="domesticImage" class="carousel-item">
<img class="d-block w-100" src="../images/united_states.jpg">
<div class="carousel-caption countryCaption">
<h2>Domestic</h2>
<p>See Products</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#catalogueCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#catalogueCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
#catalogueCarousel
margin: auto;
border: 3px solid;
border-color: black;
.carousel-inner
.carousel-item img
height: 500px; !important
overflow: hidden;
opacity: 0.9;
opacity: 0.8;
.countryCaption h2
color: red;
font-family: 'Prosto One', cursive;
opacity: 1; !important
.countryCaption p
color: darkred;
font-weight: bold;
font-family: 'Prosto One', cursive;
font-size: 20px;
opacity: 1; !important
Above is a snippet of the carousel html code, as well as it's stylesheet.
Any tips or ideas to help me resolve this is appreciated.
Thank you.
html css bootstrap-4 carousel
html css bootstrap-4 carousel
asked Mar 24 at 18:01
ChiblesChibles
84
84
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can try using a combination of media queries and the !important rule.
Assuming 768px is your mobile breakpoint:
@media(max-width:768px)
#catalogueCarousel
width: 100% !important;
Alternatavely you could use jQuery:
function resizeCarousel()
if($window.width() < 768)
$('#catalogueCarousel')
.removeClass('w-50')
.addClass('w-100');
else
$('#catalogueCarousel')
.removeClass('w-100')
.addClass('w-50');
resizeCarousel();
$window.resize(resizeCarousel);
Worked like a charm, really like the jQuery method. Appreciate y'all's time!
– Chibles
Mar 26 at 0:29
Great stuff, if it's all working for you could you mark the answer as accepted?
– Marc Randall
Mar 26 at 7:49
add a comment |
You just need add media query for small device. Add below CSS in style sheet i hope it'll resolve your issue. Thanks
@media only screen and (max-width: 768px)
#catalogueCarousel
width: 100% !important;
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55326837%2fcarousel-to-display-full-width-of-screen-for-small-screens-only%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can try using a combination of media queries and the !important rule.
Assuming 768px is your mobile breakpoint:
@media(max-width:768px)
#catalogueCarousel
width: 100% !important;
Alternatavely you could use jQuery:
function resizeCarousel()
if($window.width() < 768)
$('#catalogueCarousel')
.removeClass('w-50')
.addClass('w-100');
else
$('#catalogueCarousel')
.removeClass('w-100')
.addClass('w-50');
resizeCarousel();
$window.resize(resizeCarousel);
Worked like a charm, really like the jQuery method. Appreciate y'all's time!
– Chibles
Mar 26 at 0:29
Great stuff, if it's all working for you could you mark the answer as accepted?
– Marc Randall
Mar 26 at 7:49
add a comment |
You can try using a combination of media queries and the !important rule.
Assuming 768px is your mobile breakpoint:
@media(max-width:768px)
#catalogueCarousel
width: 100% !important;
Alternatavely you could use jQuery:
function resizeCarousel()
if($window.width() < 768)
$('#catalogueCarousel')
.removeClass('w-50')
.addClass('w-100');
else
$('#catalogueCarousel')
.removeClass('w-100')
.addClass('w-50');
resizeCarousel();
$window.resize(resizeCarousel);
Worked like a charm, really like the jQuery method. Appreciate y'all's time!
– Chibles
Mar 26 at 0:29
Great stuff, if it's all working for you could you mark the answer as accepted?
– Marc Randall
Mar 26 at 7:49
add a comment |
You can try using a combination of media queries and the !important rule.
Assuming 768px is your mobile breakpoint:
@media(max-width:768px)
#catalogueCarousel
width: 100% !important;
Alternatavely you could use jQuery:
function resizeCarousel()
if($window.width() < 768)
$('#catalogueCarousel')
.removeClass('w-50')
.addClass('w-100');
else
$('#catalogueCarousel')
.removeClass('w-100')
.addClass('w-50');
resizeCarousel();
$window.resize(resizeCarousel);
You can try using a combination of media queries and the !important rule.
Assuming 768px is your mobile breakpoint:
@media(max-width:768px)
#catalogueCarousel
width: 100% !important;
Alternatavely you could use jQuery:
function resizeCarousel()
if($window.width() < 768)
$('#catalogueCarousel')
.removeClass('w-50')
.addClass('w-100');
else
$('#catalogueCarousel')
.removeClass('w-100')
.addClass('w-50');
resizeCarousel();
$window.resize(resizeCarousel);
answered Mar 24 at 18:24
Marc RandallMarc Randall
662
662
Worked like a charm, really like the jQuery method. Appreciate y'all's time!
– Chibles
Mar 26 at 0:29
Great stuff, if it's all working for you could you mark the answer as accepted?
– Marc Randall
Mar 26 at 7:49
add a comment |
Worked like a charm, really like the jQuery method. Appreciate y'all's time!
– Chibles
Mar 26 at 0:29
Great stuff, if it's all working for you could you mark the answer as accepted?
– Marc Randall
Mar 26 at 7:49
Worked like a charm, really like the jQuery method. Appreciate y'all's time!
– Chibles
Mar 26 at 0:29
Worked like a charm, really like the jQuery method. Appreciate y'all's time!
– Chibles
Mar 26 at 0:29
Great stuff, if it's all working for you could you mark the answer as accepted?
– Marc Randall
Mar 26 at 7:49
Great stuff, if it's all working for you could you mark the answer as accepted?
– Marc Randall
Mar 26 at 7:49
add a comment |
You just need add media query for small device. Add below CSS in style sheet i hope it'll resolve your issue. Thanks
@media only screen and (max-width: 768px)
#catalogueCarousel
width: 100% !important;
add a comment |
You just need add media query for small device. Add below CSS in style sheet i hope it'll resolve your issue. Thanks
@media only screen and (max-width: 768px)
#catalogueCarousel
width: 100% !important;
add a comment |
You just need add media query for small device. Add below CSS in style sheet i hope it'll resolve your issue. Thanks
@media only screen and (max-width: 768px)
#catalogueCarousel
width: 100% !important;
You just need add media query for small device. Add below CSS in style sheet i hope it'll resolve your issue. Thanks
@media only screen and (max-width: 768px)
#catalogueCarousel
width: 100% !important;
answered Mar 24 at 18:23
Hassan SiddiquiHassan Siddiqui
1,9511715
1,9511715
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55326837%2fcarousel-to-display-full-width-of-screen-for-small-screens-only%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown