In my site the gallery page shows all pictures below the rest of the site?
In my site the gallery page shows all pictures below the rest of the site?
Look in your stylesheet ~line 132 for
.post {
margin-top: 0pt;
margin-right: 0pt;
margin-bottom: 25px;
margin-left: 0pt;
background-image: url(img/resultsbg.png);
background-repeat: repeat-x;
}
add a float: left; :
.post {
margin-top: 0pt;
margin-right: 0pt;
margin-bottom: 25px;
margin-left: 0pt;
background-image: url(img/resultsbg.png);
background-repeat: repeat-x;
float:left;
}
Then it should work ...
You must log in to post.