hello my code pen portfolio is not displaying the projects thumbnails for some reason I still haven’t been able to figure this out been stuck on this for weeks here is the link to the project:
its just a landing thumbnail no actual project in there yet
I’m sorry so when I click on the button to go to the projects link there should be some thumb nails that are included in my html portion of the project but when I click on the projects tab it show nothing the thumbnail should show here if you look at my html and go to the section that says projects you will see what I mean all the stuff in the projects section of my html l file should be displaying in projects tab but it isn’t
<html>
<body>
<div class="jumbotron">
<div class="container">
<h1>Sergio's Portfolio</h1>
<nav class="navbar navbar-default">
<ul class="nav navbar-nav">
<li><a href="#tab1"> HOME </a></li>
<li><a href="#tab2"> ABOUT </a></li>
<li><a href="#tab3"> PROJECTS </a></li>
<li><a href="#tab4"> CONTACT</a></li>
</ul>
</nav>
</div>
</div>
<div class="content">
<div id="tab1">
<h1>My first page with style</h1>
<p>Welcome to this page!</p>
<p>It has no images, but it got style.And it has links, to bring you somewhere else</p>
<p>On this page links are part of a navigation element: a menu. The menu contains links to other parts (tabs) inside this document. The page-logic is realized with jQuery.</p>
</div>
<div id="tab2">
<p>My name is Sergio Alvarado, I am a recent Learn Academy graduate. I've been interning at Victorise for a month and have been learning Angular and Ionic. I was born and rased in North County and been living in Carlsbad, CA.</p>
</div>
<div id="tab3">
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="..." alt="...">
<div class="caption">
<h3>Thumbnail label</h3>
<p>...</p>
<p><a href="#" class="btn btn-default" role="button">Button</a></p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="..." alt="...">
<div class="caption">
<h3>Thumbnail label</h3>
<p>...</p>
<p><a href="#" class="btn btn-default" role="button">Button</a></p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="..." alt="...">
<div class="caption">
<h3>Thumbnail label</h3>
<p>...</p>
<p><a href="#" class="btn btn-default" role="button">Button</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<footer>Made on July, 2017. By Sergio Alvarado.</footer>
</html>
No idea why, but when I delete the row, column and thumbnail divs, then your thumbnail placeholders come up. I don’t see anything in your css or js that would keep it from being visible so Im at a loss.
@SkyC thank you so much this fixed it for now I will look into this further later on but thank you so much for the help!!!
Ahh! You’re awesome! I was able to figure out that it was being hidden, but just didnt know enough to understand why…and it was bugging at me! lol Thanks for explaining this!