Nice work! Does the contact form currently work? If not, can you provide code to make this work?
- Has been a member for 3-4 years
- Repeatedly Helped protect Envato Marketplaces against copyright violations
- Exclusive Author
- Author was Featured
- Sold between 50 000 and 100 000 dollars
- Bought between 1 and 9 items
- India
- Referred between 100 and 199 users
its an simple html contact form no php in it.
Hi, nice template.. But there is a bug in Google Chrome. Can’t see the big pictures.. If you can fix this, i buy your template 
- Has been a member for 3-4 years
- Repeatedly Helped protect Envato Marketplaces against copyright violations
- Exclusive Author
- Author was Featured
- Sold between 50 000 and 100 000 dollars
- Bought between 1 and 9 items
- India
- Referred between 100 and 199 users
Giel its working fine in Google Chrome
Hi Settysantu,
Great Website, would you be able to help me get the contact form active?
Thank you.
- Has been a member for 3-4 years
- Repeatedly Helped protect Envato Marketplaces against copyright violations
- Exclusive Author
- Author was Featured
- Sold between 50 000 and 100 000 dollars
- Bought between 1 and 9 items
- India
- Referred between 100 and 199 users
hi nikane, actually i was planning to update all my templates with working contact form but not getting enough time, mail me will help you.
Hello,
I really like the gallery portion of this theme. I bought this theme to use teh gallerry jQuery on a Wordpress theme that I created for a client.
However, I have not been able to get it to work on Wordpress.
Is there something I need to do to the .js files for it to work on Wordpress? I had to change the image and js paths to absolute, is there anything in the JS files that may need to be absolute paths as well?
If not, could there be another reason why I can not get the code to work in Wordpress?
Thanks. Steve
I want this one!!
But i need so much time to buy it. Paypal registration takes about 3-5 days and only then i can buy it.
BUT I NEED IT TODAY ….
May be somebody advice me another variants to get it..
Hi, I purchased this theme and need help getting the contact form to work.
Thanks!
I have a question on this template. how do I use it in drupal? usually I switch the theme.
Does this template include CSS ? Does the Contact Us form work?
Is there an external style sheet? I want to control all styles.
I have not purchased yet. I need the form work correctly as is, and I need an external style sheet for maximum control (typefaces, colors, column widths, padding etc.). I’ll need to place images into the homepage Flash you have, and also, I have some Flash content to place on the secondary pages.
OK. I’ll buy tomorrow. How do I access your email so you can help me get the form to function?
Can I load more, than 14 images? Thanks
You mean, it is possible? If so, I do not see that in demo. What is the limit? How can I move icons line to the sides?
How can I scroll thumbnails line right and left direction?
Thank you for the prompt answers. Best regards
I really like this template. I would like to purchase it but I have a couple of questions first. Can I insert my company name and logo in place of “Smart Interiors” and the caption below it?
Also, can I eliminate some of the navigation buttons and pages and replace the verbage with my own? Or at least not make all the content live until I want to?
Thank you.
Is there a way to get the home page images to cycle or “auto play”?
EDIT : Answered my own question…http://monc.se/kitchen/146/galleria-a-javascript-image-gallery
Sorry for late reply, am glad that you found your answer but here is the answer to whom are not aware of.
For auto sliding simple do the following
Step 1: Open index.html
Step 2: You will find following code
<script type="text/javascript">
$(document).ready(function(){
$('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
$('ul.gallery_demo').galleria({
history : true, // activates the history object for bookmarking, back-button etc.
clickNext : true, // helper for making the image clickable
insert : '#main_image', // the containing selector for our main image
onImage : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
// fade in the image & caption
image.css('display','none').fadeIn(1000);
caption.css('display','none').fadeIn(1000);
// fetch the thumbnail container
var _li = thumb.parents('li');
// fade out inactive thumbnail
_li.siblings().children('img.selected').fadeTo(500,0.3);
// fade in active thumbnail
thumb.fadeTo('fast',1).addClass('selected');
// add a title for the clickable image
image.attr('title','Next image >>');
},
onThumb : function(thumb) { // thumbnail effects goes here
// fetch the thumbnail container
var _li = thumb.parents('li');
// if thumbnail is active, fade all the way.
var _fadeTo = _li.is('.active') ? '1' : '0.3';
// fade in the thumbnail when finnished loading
thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
// hover effects
thumb.hover(
function() { thumb.fadeTo('fast',1); },
function() { _li.not('.active').children('img').fadeTo('fast',0.3); } // don't fade out if the parent is active
)
}
});
});
</script>
Replace ABove Code With Below Code
<script type="text/javascript">
var INTERVAL = 7000;
var slideshow_timer = null;
var is_sliding = null;
function slideShow()
{
is_sliding = true; // <-- Sorry, this is a bad hack
$.galleria.next();
is_sliding = false;
}
$(document).ready(function(){
$('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
$('ul.gallery_demo').galleria({
history : true, // activates the history object for bookmarking, back-button etc.
clickNext : true, // helper for making the image clickable
insert : '#main_image', // the containing selector for our main image
onImage : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
// fade in the image & caption
image.css('display','none').fadeIn(1000);
caption.css('display','none').fadeIn(1000);
// fetch the thumbnail container
var _li = thumb.parents('li');
// fade out inactive thumbnail
_li.siblings().children('img.selected').fadeTo(500,0.3);
// fade in active thumbnail
thumb.fadeTo('fast',1).addClass('selected');
// add a title for the clickable image
image.attr('title','Next image >>');
var wrapper = $(image).parent().css('position', 'absolute');
var container = $(wrapper).parent().css('position', 'relative');
var new_top = (container.height() - wrapper.height()) / 2;
wrapper.css({'top': new_top, 'width': container.width()});
wrapper.css({'top': new_top, 'width': container.width(), 'left': 0});
if (is_sliding== null)
{
slideshow_timer = window.setInterval(slideShow, INTERVAL);
is_sliding = false;
} else if (!is_sliding)
{
window.clearInterval(slideshow_timer);
slideshow_timer = null;
}
},
onThumb : function(thumb) { // thumbnail effects goes here
// fetch the thumbnail container
var _li = thumb.parents('li');
// if thumbnail is active, fade all the way.
var _fadeTo = _li.is('.active') ? '1' : '0.3';
// fade in the thumbnail when finnished loading
thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
// hover effects
thumb.hover(
function() { thumb.fadeTo('fast',1); },
function() { _li.not('.active').children('img').fadeTo('fast',0.3); } // don't fade out if the parent is active
)
}
});
});
</script>

i think it should work, but don’t know how your using it? are you using it a plug in or manually written? btw i am not much good with wordpress