Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Framework Basics Prototyping with Bootstrap Building a Carousel

How would I move the carousel indicators below the slide? I've given 'bottom' property a negative value, still no luck.

.carousel-indicators { position: absolute; bottom: -40px; left: 50%; z-index: 15; width: 60%; padding-left: 0; margin-left: -30%; text-align: center; list-style: none; }

1 Answer

Matthew Panton
Matthew Panton
15,228 Points

You might want to check that the parent element of .carousel-indicators is not position: static which is the default, try changing it to relative

Alright I'll give it a try. Thanks

I figured it out... I had changed the standard value but didn't change the media query (min-width 768)... So previewing on monitor, full screen, I noticed no differnce.