Yeah man it’s cool but maybe add some easing to the scrollers. Also your submit button text needs to be fixed there is not enough padding on the right.
Maybe use a different like Titillium or sans narrow.
Also could make the graphics a bit better.
Over all tho i like it.
Cheers and good luck man.
Lester
Just bumping this. Anyone has any info on this???
Cheers
Lester
Hey man
I like it but i think there is too much white. Also make the menu fixed and not to scroll with the rest of the content. I would put the menu on the left and the content to the right. Also would add the option to open and close the menu.
Maybe use some other fonts.
Cheers and good luck.
Lester
HEy there
Well see the thing is that reviewers are not here to create your themes, and help you get your theme approved. You have to do all the work. If your theme has some potential they will say that it is good but needs some fine tuning. Your template has to be unique and have some good functions.
Also if it’s a WP theme your back end has to be clean and not cluttered, simple to use.
I was told that the back end is a 30% deciding factor in approving it the rest of it is the actual design and functions.
I know it’s frustrating because i had rejections too and i was a bit pissed off but at the end i used that rejection to my advantage.
All you have to do is keep on keeping on and don’t give up.
I see some good things in your theme but it’s just not there yet.
Cheers
Lester
Hey
Not to be the guy that brings you bad news but your template is just does not look like a premium theme. Looks out dated really not much to it.
Also nothing really unique about it. Have a look at some of the templates on TF and compare yours to them to see if you see any resemblance in quality.
To me it looks like a free theme.
Cheers
Lester
Hey all
I am looking for some good country band images that i would like to use for my upcoming template on TF. I need at least 10 good images of the same band or actors. I am doing a country music theme. I will be only using the images in a preview not reselling them in the download. Let me know if any of you guys have something as a package, if i have to buy i will, or i can use watermarked images and add the photographer into the credits.
Let me know
Cheers
Lester
maxwheaton said
all of you people amaze me. First, you hide behind alias and spout of on something you know nothing about and put all the blame on me. Did it ever occur to Envato to contact Dream-Theme and get a copy of the problem reports that went on for a week? No they didn’t. It was easier & obviously cheaper to give me a hard time….The package would not load via zipped file and had to be loaded, unzipped via a ftp manager. Second I couldn’t get it to work or be recognizes by WordPress. I got Dream-Theme to load it. WordPress recognized it. After a lot of design work I discovered that it couldn’t be published to the web. Ny host provider discovered that the Dream-theme loaded it into the wrong area. The host told me to contact Dream-Theme and tell them that it was in the wrong place. So I did and that’s when things got really silly. Dream-Theme started arguing the point so I told them to contact my host and that they would get the info. That’s when Dreme-Theme refused to contact my host and cut me off and withdrew support.
So, FinalDestiny I’m the unprofessional one in this….I will not be responding to this anymore…y”all have yourselves a wonderful day and continue hiding behind alias’s
Ok so the preview is working 100% is or is it not? I think that the installation instructions are in the help manual, not a 100 % but they should be. Once you read through how to install the theme and it does not work, well then there could be 2 things wrong. Either the instructions are wrong or the installation was done wrong.
I don’t know much about WP but all the themes i bought had very concise instructions even for a WP dummy like myself.
Now i don’t know what the problem is exactly but i am sure if you keep your cool and ask professionally then things will get resolved. I have never had any problems with my customers.
cheers
Ok
So the only thing i do not understand is on how where the date would go, I can do a simple php contact form but i never did one with adding the date. would this be sent in the message or do i have to create another variable for it and use the var name for it as checkin.
But what i do not see is the same label names in the javascript. Should i just make asimple contact form idea with the form validation js? I don’t see how this javascript will work with the php.
Cheers
Lester
Pirenko said
Apparently you are calling a reservation.php script. Is it empty? What do you want to do with? Send an email? Store info on a database?
Hey
I think he just wants to send the info in an email not database, but iwas looking at the rest of the files and there is no php included.
He asked me if i can do a php form for it but as i said i greatly suck in php so this is why i posted it here. Just something simple that would send the info. Cheers
Lester
Hey Guys and Gals
I got a friend of mine that needs to add a reservation form to his site. I have made the html,css, and js parts but i suck at php and have no clue for the php part. would anyone be kind enough to help me out. There is no money in this i am doing this as a favour.
This is the html:
<div class="reservation_wrapper">
<!----------// RESERVATION FIELDS //---------->
<div id="reservation_fields">
<form id="ajax-reservation-form" action="javascript:alert('success!');">
<div class="left">
<label><span class="red">*</span>Name</label>
<div class="clear" />
<INPUT type="text" name="name" value="" class="name">
</div>
<div class="left pad_left1">
<label ><span class="red">*</span>Phone</label>
<div class="clear" />
<INPUT type="text" name="phone" value="" class="phone">
</div>
<div class="left pad_left1">
<label><span class="red">*</span>E-mail</label>
<div class="clear" />
<INPUT type="text" name="email" value="" class="email">
</div>
<div class="left pad_left1">
<label>Date</label>
<div class="clear" />
<INPUT type="text" name="checkin" value="" id="datepicker" class="datepicker">
</div>
<div class="left pad_left1">
<label>Type Of Venue:</label>
<div class="clear" />
<select name="select1" class="select1">
<option value="----" selected="selected">----</option>
<option value="Single room">Concert</option>
<option value="Double room">Wedding</option>
<option value="Double room for single use">Stag & Doe</option>
<option value="Triple room">Birth Day</option>
<option value="Quadruple room">Re-Unions</option>
<option value="Family suite">Funeral</option>
</select>
</div>
<div class="left">
<INPUT class="submit" type="submit" name="submit" value="submit">
</div>
<div class="clear" />
</form>
</div>
<div id="reservation_note" />
This is the js:
<pre>$(document).ready(function(){
$("#ajax-reservation-form").submit(function(){
var str = $(this).serialize();
$.ajax( { type: "POST", url: "reservation.php", data: str, success: function(msg){
if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
{ result = '<div class="reservation_notification_ok"><div class="left">Your message has been sent. Thank you!<br />Our manager will contact you to discuss your staying in our hotel.</div><a href="#" class="reservation_more right" onclick="reservation_freset();return false;">Reserve another room</a></div>'; $("#reservation_fields").hide(); }
else
{ result = msg; }
$("#reservation_note").html(result);
}
});
return false;
});
});
function reservation_freset(){
$("#reservation_note").html('');
document.getElementById('ajax-reservation-form').reset();
$("#reservation_fields").show();
};</pre>
Cheers and thanks
Lester</div>