Link to home
Start Free TrialLog in
Avatar of Bruce Gust
Bruce GustFlag for United States of America

asked on

Why don't the arrows for the carousel show up?

Head out to http://new.brucegust.com/brochure/. I've got a carousel on the left hand side that I want to equip with the two arrows on either the side that can be clicked on to manipulate the carousel itself.

If you look at the source code, you'll see them where they ought to be, but they don't work.

Any idea why and how to fix it?

<div id="carousel-sites" class="carousel slide" data-ride="carousel">
				<div class="carousel-inner">
					<div class="carousel-item active">
						<a href="https://new.brucegust.com" target="_blank"><img src="images/nomas.jpg" class="carousel-pictures" border="0"></a>
					</div>
					<div class="carousel-item">
						<a href="images/dvd_large.png" target="_blank"><img src="images/dvd.jpg" class="carousel-pictures" border="0"></a>
					</div>
					<div class="carousel-item">
						<a href="http://www.timbersys.com/cart/index.php" target="_blank"><img src="images/timbersys.jpg" class="carousel-pictures" border="0"></a>
					</div>
					<div class="carousel-item">
						<a href="http://muscularchristianityonline.com/forum" target="_blank"><img src="images/muscular.jpg" class="carousel-pictures"  border="0"></a>
					</div>
					 <a class="left carousel-control" href="#carousel-sites" role="button" data-slide="prev">
					<span class="glyphicon glyphicon-chevron-left"></span>
				</a>
				<a class="right carousel-control" href="#carousel-sites" role="button" data-slide="next">
					<span class="glyphicon glyphicon-chevron-right"></span>
				</a>
				</div>
			</div>
		</div>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of lenamtl
lenamtl
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Bruce Gust

ASKER

Yes, they are!

I replaced the graphics that were being used on my local box to represent the arrows with some text - just to see if the functionality was in place and where, if they were showing up at all, were they positioned.

By doing that I was able to tell that it wasn't the code, it was the fact that the glyphicons weren't being loaded correctly. I just replaced those and there you have it!

Thanks for weighing in!