Hi Couchers!
I don't know if anyone is willing to help me but i've been trying to get the photo galery for my new site to work for the past days. All of the other pages are working but I just can't get the galery to work myself. The HTML site is finished and everything is working but I just don't know how to get it to work. I've tried to kind of clone the design of the sample photo galery but that didn't work. I've tried to do all the coding myself but I guess I'm just not experienced enough and do not know where to start. Can someone point me in the right direction and tell me where to start and what to do? I would really really appreciate it! Thanks in advance.
I've uploaded a example site on my server, you can look it up at http://ohm-media.nl/couchforumexample. The code is listed below.
Edit: The site is based on Zurb's Foundation
Thanks a lot!
I don't know if anyone is willing to help me but i've been trying to get the photo galery for my new site to work for the past days. All of the other pages are working but I just can't get the galery to work myself. The HTML site is finished and everything is working but I just don't know how to get it to work. I've tried to kind of clone the design of the sample photo galery but that didn't work. I've tried to do all the coding myself but I guess I'm just not experienced enough and do not know where to start. Can someone point me in the right direction and tell me where to start and what to do? I would really really appreciate it! Thanks in advance.
I've uploaded a example site on my server, you can look it up at http://ohm-media.nl/couchforumexample. The code is listed below.
Edit: The site is based on Zurb's Foundation
- Code: Select all
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sitenaam - Pagina</title>
<link rel="stylesheet" href="css/foundation.css" />
<script src="js/modernizr.js"></script>
</head>
<body>
<!-- START MENU -->
<nav class="top-bar hide-for-small" data-topbar>
<ul class="title-area">
<li class="name">
<h1><a href="index.html">Sitenaam</a></h1>
</li>
</ul>
<section class="top-bar-section">
<ul class="left">
<li><a href="#">Pagina</a></li>
<li><a href="#">Pagina</a></li>
<li><a href="#">Pagina</a></li>
</ul>
<ul class="right">
<li><a href="#">Contact</a></li>
</ul>
</section>
</nav>
<div class="off-canvas-wrap docs-wrap">
<div class="inner-wrap">
<nav class="tab-bar show-for-small">
<section class="left-small">
<a class="left-off-canvas-toggle menu-icon" ><span></span></a>
</section>
<section class="right tab-bar-section">
<h1 class="title">Sitenaam</h1>
</section>
</nav>
<aside class="left-off-canvas-menu">
<ul class="off-canvas-list">
<li><label>Menu</label></li>
<li><a href="#">Pagina</a></li>
<li><a href="#">Pagina</a></li>
<li><a href="#">Pagina</a></li>
</ul>
</aside>
<!-- ENDE MENU -->
<section class="main-section">
<!-- START IMAGE HEADER -->
<img data-interchange="[img/header_small.gif, (small)], [img/header_medium.gif, (medium)], [img/header_large.gif, (large)]" />
<!-- END IMAGE HEADER -->
<!-- START GALERY -->
<div class="row">
<div class="large-9 medium-8 small-12 columns">
<h1>Galery</h1>
<ul class="clearing-feature" data-clearing>
<li class="clearing-featured-img"><a class="th" href="http://placehold.it/1920x1080.gif"><img data-caption="Galery/folder1" src="http://placehold.it/100x100.gif"></a></li>
<li><a href="http://placehold.it/1920x1080.gif"><img data-caption="Galery/folder1" src="http://placehold.it/100x100.gif"></a></li>
<li><a href="http://placehold.it/1920x1080.gif"><img data-caption="Galery/folder1" src="http://placehold.it/100x100.gif"></a></li>
<li class="clearing-featured-img"><a class="th" href="http://placehold.it/1920x1080.gif"><img data-caption="Galery/folder2" src="http://placehold.it/100x100.gif"></a></li>
<li><a href="http://placehold.it/1920x1080.gif"><img data-caption="Galery/folder2" src="http://placehold.it/100x100.gif"></a></li>
<li><a href="http://placehold.it/1920x1080.gif"><img data-caption="Galery/folder2" src="http://placehold.it/100x100.gif"></a></li>
<li class="clearing-featured-img"><a class="th" href="http://placehold.it/1920x1080.gif"><img data-caption="Galery/folder3" src="http://placehold.it/100x100.gif"></a></li>
<li><a href="http://placehold.it/1920x1080.gif"><img data-caption="Galery/folder3" src="http://placehold.it/100x100.gif"></a></li>
<li><a href="http://placehold.it/1920x1080.gif"><img data-caption="Galery/folder3" src="http://placehold.it/100x100.gif"></a></li>
</ul>
</div>
<!-- END GALERY -->
<hr class="show-for-small-only" />
<!-- START SIDEBAR -->
<div class="large-3 medium-4 small-12 columns">
<h1>Sidebar</h1>
</div>
</div>
<!-- EIND SIDEBAR -->
<!-- START FOOTER -->
<footer class="row">
<hr />
<div class="row show-for-medium-up">
<div class="medium-6 columns">
<p>© Bedrijfsnaam, Naam.</p>
</div>
<div class="medium-6 columns">
<p class="right">Design & Hosting door <a href="http://ohm-media.nl/">Ohm-Media</a>
</div>
</div>
<div class="show-for-small-only">
<div class="small-12 colums">
<center>
<p>© Bedrijfsnaam, Naam.<br />
Design & Hosting door <a href="http://ohm-media.nl/">Ohm-Media</p>
</center>
</div>
</div>
</footer>
<!-- END FOOTER -->
</section>
<a class="exit-off-canvas"></a>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>
Thanks a lot!