Photo Gallery

iPhonefreak

Paragon
Joined
Apr 7, 2012
Messages
1,521
Reaction score
0
FP$
6
Can anyone help me with making a photo gallery with HTML and CSS? I will be making a site with lots of pictures with lots of topics (59 topics with probably 10 photos each).

If possible, a slidehsow is best. It can include some Javascript. However, I have already looked online and the ones I have found are too complicated.
 
I have some premade photo gallery script.
this is not my own but all are free to use ....
like php gallery and etc<br /><br />-- 07 Apr 2014, 12:53 --<br /><br />you can made slideviews easly on that script through Admin CP
 
iPhonefreak said:
Can anyone help me with making a photo gallery with HTML and CSS? I will be making a site with lots of pictures with lots of topics (59 topics with probably 10 photos each).

If possible, a slidehsow is best. It can include some Javascript. However, I have already looked online and the ones I have found are too complicated.
What CMS are you using?
 
<html>
<head>
<style>
div.img
{
margin:5px;
padding: 5px;
border:1px solid #0000ff;
height:auto;
width:auto;
float:left;
text-align:center;
}
div.img img
{
display:inline;
margin:5px;
border:1px solid #ffffff;
}
div.img a:hover img
{
border:1px solid #0000ff;
}
div.desc
{
text-align:center;
font-weight:normal;
width:120px;
margin:5px;
}
</style>
</head>
<body>

<div class="img">
<a target="_blank" href="klematis_big.htm">
<img src="klematis_small.jpg" alt="Klematis" width="110" height="90">
</a>
<div class="desc">Add a description of the image here</div>
</div>
<div class="img">
<a target="_blank" href="klematis2_big.htm">
<img src="klematis2_small.jpg" alt="Klematis" width="110" height="90">
</a>
<div class="desc">Add a description of the image here</div>
</div>
<div class="img">
<a target="_blank" href="klematis3_big.htm">
<img src="klematis3_small.jpg" alt="Klematis" width="110" height="90">
</a>
<div class="desc">Add a description of the image here</div>
</div>
<div class="img">
<a target="_blank" href="klematis4_big.htm">
<img src="klematis4_small.jpg" alt="Klematis" width="110" height="90">
</a>
<div class="desc">Add a description of the image here</div>
</div>

</body>
</html>
 
I was also facing the same problem with the photo gallery. However i did not got any reliable solution and that is why i shifted to Wordpress also there are loads of photo gallery extensions available for it.
 
Back
Top Bottom