18 comments found.
Hi there,
I replaced the updated Mailchimp file you sent previously and now I do not know where to insert the ‘credentials’ as all the lines of code seem to be different. Below are the mailchimop details. Can you tell me where to insert them please? Thanks in advance!
The url is: www.rawinc.co.uk
API KEY 982356c43af9f68d109d5d9bbf6b6cda-us17
LIST ID 06c23d502f
Hello!
You need to modify your ‘mailchimp/store-address.php’.
There are appropriate variables ’$api’ and ’$list_id’. You need fill them with your data.
Best regards!
Hi there. I am having issues with the Newsletter sign up form on the homepage near the footer. I followed all the steps and inserted the codes where you said to do so.
Can you have a look for me and see if I have done something wrong? That would be awesome. The theme is great btw.
My purchase code is: bdf211ea-ce54-495a-ae06-c2f3acea7732
The website url: www.rawinc.co.uk
Thanks in advance,
Luke
Hello! Thanks for purchase!
It seems that you need to update your mailchimp. Unzip please following archive in folder YOUR_THEME/mailchimp http://webdesign-finder.com/files-for-users/mailchimp.zip
Best Regards!
One last thing. How do I adjust size of the top bar, on small screens only shows me the first ulr and rest in collapsed. Of course on bigger screen it shows it more but I wiould liek the menu to be more visible. Where can I adjust that?
@media(min-width: 992px) { .block-header1, .block-header3 { display: none; } .block-header2 { width: 100%; } }Best regards!
You are great !!! I would buy from you AGAIN anytime !!!! Thanks a lot for your help !!!
Many thanks for the kind words! Always happy to help
Guys there is a problem with gallery on the phone. The picture shows very small. Why? shouldn’t be resized?
@media(max-width: 767px) { div.pp_pic_holder { position: fixed !important; top: 3% !important; width: 98% !important; margin:auto; left:1% !important; } div.ppt { width: 98% !important; margin:auto; left:1% !important; } .pp_content { width: 98% !important; height: auto !important; margin:auto; left:1% !important; } .pp_hoverContainer { width: 98% !important; height:auto !important; margin:auto; left:1% !important; } .pp_details { width: 100% !important; margin:auto; } #fullResImage { width:auto !important; height:auto !important; } .pp_expand { display: none !important; } }Best Regards!
Still the same hmm…. Try going to twsazan.pl/galleryjakbiora.html on your phone when I click on the picture it gets very small
It seems like the plug in issue or something that doesn’t resize to full screen of the phone. weird.hmmm….
Check it once please, after clearing cache.
Also, need to reduce a big size images for example: 2848×4288 to smaller: 1170×780;
Great Thanks !
Quick question I would like to add option to add file in the contact form. Can you modify the code for me in order so people can send a picture with the form? Simply attach button. Thanks.
Add this part of code to your contact form:
<div class="input-group"> <div class="custom-file"> <input type="file" class="custom-file-input" id="inputGroupFile04" aria-describedby="inputGroupFileAddon04"> <label class="custom-file-label" for="inputGroupFile04">Choose file</label> </div> </div>Best Regards!
Ok so I copied the stuff into PHP and get this error. Basically I want to be able to put txt in the textbox and be sent to my email. That’s all I need. I attach contact form php and index html can you adjust it?
Also, topic to say “Comment First Page” and send to krzysztofwarchal@gmail.com
sorry i’m not that good with php and html. Site www is twsazan.pl
Hello! Thanks for link to your site, it is helpful.
You’re OK with your ‘index.html’ file.
Please try to replace your ‘contact-form.php’ with the file in following archive:
http://webdesign-finder.com/files-for-users/contact-form-message-only.zip
And again, do not forget to modify it’s variables values with your email and messages text.
Best regards!
Quick question from the contact page I just want to be able to send a message without name email subject etc…. only message box. how do I set my contact-form.php to ignore these fields when sending mail?
Please back up your current ‘contact-form.php’ file and try to replace it’s content with following code:
<?php ////////////////////////// //Specify default values// ////////////////////////// //Your E-mail $your_email = 'your@email.com'; //Default Subject if 'subject' field not specified $default_subject = 'From My Contact Form'; //Message if 'name' field not specified $name_not_specified = 'Please type a valid name'; //Message if e-mail sent successfully $email_was_sent = 'Thanks, your message successfully sent'; //Message if e-mail not sent (server not configured) $server_not_configured = 'Sorry, mail server not configured (function "mail()" disabled on your server?)'; /////////////////////////// //Contact Form Processing// /////////////////////////// $errors = array(); //"name" field required by this PHP script even if // there are no 'aria-required="true"' or 'required' // attributes on this HTML input field //if(isset($_POST['name'])) { if(!empty($_POST['name'])) $sender_name = stripslashes(strip_tags(trim($_POST['name']))); if(!empty($_POST['message'])) $message = stripslashes(strip_tags(trim($_POST['message']))); if(!empty($_POST['email'])) $sender_email = stripslashes(strip_tags(trim($_POST['email']))); if(!empty($_POST['subject'])) $subject = stripslashes(strip_tags(trim($_POST['subject']))); //Message if no sender name was specified // if(empty($sender_name)) { // $errors[] = $name_not_specified; // } $from = (!empty($sender_email)) ? 'From: '.$sender_email : ''; $subject = (!empty($subject)) ? $subject : $default_subject; //sending message if no errors if(empty($errors)) { //duplicating email meta (from and subject) to email message body $message_meta = ''; //From name and email $message_meta .= 'From: '. $sender_name . ' ' . $sender_email . '<br />'; //Subject or default subject $message_meta .= 'Subject: '. ( $subject ? $subject : $default_subject ) . '<br />'; //adding another CUSTOM contact form fields that added by user to email message body foreach ($_POST as $key => $value) { //checking for standard fields if ($key == 'name' || $key == 'message' || $key == 'subject' || $key == 'email' ) { continue; } //adding key-value pare to email message body $message_meta .= stripslashes(strip_tags(trim($key))) . ': ' . stripslashes(strip_tags(trim($value))) . '<br />'; } $message = $message_meta . '<br />Message:<br /> ' . $message; $message = wordwrap($message, 70); if (mail($your_email, $subject, $message, $from)) { echo $email_was_sent; } else { $errors[] = $server_not_configured; echo implode('<br />', $errors ); } } else { echo implode('<br />', $errors ); } //} else { // if "name" var not send ('name' attribute of contact form input field was changed or missing) // echo '"name" variable were not received by server. Please check "name" attributes for your input fields'; //}Don’t forget to set up your email and error messages at the top of your file.
Best regards!
hi problem with conf email:
//Your E-mail $your_email = ‘pt@sergiosantosentrenadorpersonal.es’;
//Default Subject if ‘subject’ field not specified $default_subject = ‘From My Contact Form’;
//Message if ‘name’ field not specified $name_not_specified = ‘Please type a valid name’;
//Message if e-mail sent successfully $email_was_sent = ‘Gracias, te contestaré lo antes posible’;
//Message if e-mail not sent (server not configured) $server_not_configured = ‘Sorry, mail server not configured (function “mail()” disabled on your server?)’;
dont send , why?
Hello
What happens when you push a “Sent Message” button? Maybe some error appear?
no, the messange is Gracias, te contestaré lo antes posible, but dont receive in mail pt@sergiosantosentrenadorpersonal.es
Hello! Can you please provide a link to your contact page?
Please can I get the compressed.js file unminified? I cannot edit it with the way it is.
Hello!
Thanks for purchase!
You can find a list of JS files that are included in “compressed.js” in your template documentation
All of JS files (except “main.js” file and “switcher.js” file) are compressed in a single “compressed.js” file for best perfomance.
<script src="js/compressed.js"></script> <script src="js/main.js"></script>with this one:
<script src="js/vendor/jquery-2.2.4.min.js"></script> <script src="js/vendor/bootstrap.min.js"></script> <script src="js/vendor/jquery.appear.js"></script> <script src="js/vendor/jquery.hoverIntent.js"></script> <script src="js/vendor/superfish.js"></script> <script src="js/vendor/jquery.easing.1.3.js"></script> <script src="js/vendor/jquery.ui.totop.js"></script> <script src="js/vendor/jquery.localscroll-min.js"></script> <script src="js/vendor/jquery.scrollTo-min.js"></script> <script src="js/vendor/jquery.parallax-1.1.3.js"></script> <script src="js/vendor/jquery.easypiechart.min.js"></script> <script src="js/vendor/bootstrap-progressbar.min.js"></script> <script src="js/vendor/jquery.countTo.js"></script> <script src="js/vendor/jquery.prettyPhoto.js"></script> <script src="js/vendor/jquery.countdown.min.js"></script> <script src="js/vendor/isotope.pkgd.min.js"></script> <script src="js/vendor/owl.carousel.min.js"></script> <script src="js/vendor/jquery.flexslider-min.js"></script> <script src="js/vendor/jflickrfeed.min.js"></script> <script src="js/vendor/jquery-ui.min.js"></script> <script src="js/vendor/price-slider.min.js"></script> <script src="js/vendor/jquery.cookie.js"></script> <script src="twitter/jquery.tweet.min.js"></script> <script src="js/plugins.js"></script> <script src="js/main.js"></script>Best regards!
Hi Sir, I want the boostrap html version of this theme,i dont want the wordpress theme. Let me know if bootstrap html and CSS version available for this ??
Waiting for your response.
Regards Faizan Saeed
Hello!
This template is a set of regular HTML files, not WP theme.
Best regards!
Hey Sir, My client provided me the purchased cross power theme with HTML files, but when i open any file it is showing me a blank page only color switcher is working. Please reply me as soon as possible.
Hello!
Please ask your client where he get this template.
Best regards!
What is best to use to simply edit this
Hello!
Thanks for purchase!
You can use any HTML code editor that you prefer. For example, Sublime Text, Notepad++, Adobe Dreamveawer, Coda etc.
Best regards!
hi this is amari I just purchased this site and i am not going to lie I absolutely love it it looks really bad ass I am just trying to figure out how I can customize it to fit my needs and color scheme. if you could please get back yo me as soon as possible it would be a big help. Fantastic job again it is amazing!
Thanks for purchase and using our template!
This template has 3 predefined color schemes. You can change code on your pages to switch color schemes like so:
<link rel="stylesheet" href="css/main.css" id="color-switcher-link">to
<link rel="stylesheet" href="css/main2.css" id="color-switcher-link">or
<link rel="stylesheet" href="css/main3.css" id="color-switcher-link">If this color schemes does not suit your needs you can customize your “main.css” file:
Replace all instances of ”#0092ff” and ”#8dddff” hex color codes to any hex codes that you need by opening “main.css” file in any code editor and using “find and replace” tool.
Best regards!
oh man hahaha yea i have no idea how to code
i would like to change the color to gold but i am in dreamweaver and have no idea what i am looking at
and can i open this in adobe muse or dreamweaver and work on it somehow
Dreamweaver should works well. Please try to open your “css/main.css” file in it and do “find and replace” like we note above.
Best regards!
Awesome template, GLWS
Thank you!
Congratulations! Excellent Work, GLWS
Thank you!
Congratulations! Nice Work, Good Luck With Sale
Thank you!