Are you using any plugins for creating gallery?
not that im aware of, sorry first time i user wordpress and i bought the them from template monster, theres nothing obvious in the plugins menu
/* Gallery */
#gallery {
}
#gallery .portfolio {
width:100%;
overflow:hidden;
list-style-type:none;
padding:5px 0 0 0;
margin:0;
}
#gallery .portfolio li {
float:left;
width:294px;
margin:0 35px 50px 0;
border:none;
padding:0;
font-family:Arial, Helvetica, sans-serif;
font-size:13px;
}
#gallery .portfolio li.nomargin {
margin-right:0;
}
#gallery .portfolio li a.image-wrap {
display:block;
padding:5px;
border:1px solid #eee;
overflow:hidden;
width:290px;
height:150px;
position:relative;
background:#FFF url(images/loading.gif) 50% 50% no-repeat;
}
#gallery .portfolio li a.image-wrap:hover {
border-color:#dbdbdb;
box-shadow:0 0 5px rgba(0, 0, 0, .2);
-moz-box-shadow:0 0 5px rgba(0, 0, 0, .2);
-webkit-box-shadow:0 0 5px rgba(0, 0, 0, .2);
}
#gallery .portfolio li a.image-wrap img {
float:left;
}
#gallery .portfolio .folio-desc {
margin-bottom:0;
padding:.8em 0 0 4px;
}
#gallery .portfolio p.excerpt {
padding:0;
}
.zoom-icon {
display:block;
position:absolute;
left:1px;
top:1px;
width:290px;
height:150px;
background:url(images/magnify.png) 50% 50% no-repeat;
display:none;
cursor:pointer;
}
#gallery .portfolio li a.image-wrap:hover .zoom-icon {
display:block;
}
thats from the style.css sheet, there is also a seperate page i will post next
<?php
/**
* Template Name: Portfolio Full
*/
get_header(); ?>
<div id=”full-width”>
<div id=”content”>
<?php include_once (TEMPLATEPATH . ‘/title.php’);?>
<?php global $more; $more = 0;?>
<?php $wp_query = new WP_Query(); ?>
<?php $wp_query->query(“post_type=portfolio&paged=”.$paged.’&showposts=9′); ?>
<?php get_template_part( ‘loop’, ‘portfolio’ );?>
</div><!– #content –>
</div>
<!– end #main –>
<?php get_footer(); ?>
The number of images displayed can be changed by modifying “Showposts=9”
Basically here Gallery is a Page which lists 9 images… To create new gallery you will need to create a new page where images can be displayed..
Try creating a new page , you will need to select Page Template while creating it.
Let us know if you find any success