/* Layout */
.ck_form.ck_naked {
/* divider image */
background: transparent;
line-height: 1.5em;
overflow: hidden;
color: #666;
font-size: 16px;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
clear: both;
margin: 20px 0px;
text-align: center;
}
.ck_form.ck_naked p {
padding: 0px;
}
.ck_form, .ck_form * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.ck_form.ck_naked .ck_form_fields {
width: 100%;
float: left;
padding: 5%;
}
/* Form fields */
.ck_errorArea {
display: none; /* temporary */
}
#ck_success_msg {
padding: 10px 10px 0px;
border: solid 1px #ddd;
background: #eee;
}
.ck_form.ck_naked input[type="text"], .ck_form.ck_naked input[type="email"] {
font-size: 18px;
padding: 10px 8px;
width: 34%;
border: 1px solid #d6d6d6; /* stroke */
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px; /* border radius */
background-color: #fff; /* layer fill content */
margin-bottom: 5px;
height: auto;
float: left;
margin: 0px;
margin-right: 1%;
height: 42px;
}
.ck_form input[type="text"]:focus, .ck_form input[type="email"]:focus {
outline: none;
border-color: #aaa;
}
.ck_form.ck_naked .ck_subscribe_button {
width: 100%;
color: #fff;
margin: 0px;
padding: 9px 0px;
font-size: 18px;
background: #2196f3;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px; /* border radius */
cursor: pointer;
border: none;
text-shadow: none;
width: 30%;
float: left;
height: 42px;
}
.ck_converted_content {
display: none;
padding: 5%;
background: #fff;
}
/* max width 500 */
.ck_form.ck_naked.width500 .ck_subscribe_button {
width: 100%;
float: none;
margin-top: 5px;
}
.ck_form.ck_naked.width500 input[type="text"], .ck_form.ck_naked.width500 input[type="email"] {
width: 49%;
}
.ck_form.ck_naked.width500 input[type="email"] {
margin-right: 0px;
width: 50%;
}
/* max width 400 */
.ck_form.ck_naked.width400 .ck_subscribe_button, .ck_form.ck_naked.width400 input[type="text"], .ck_form.ck_naked.width400 input[type="email"] {
width: 100%;
float: none;
margin-top: 5px;
}
.ck_slide_up, .ck_modal, .ck_slide_up .ck_naked, .ck_modal .ck_naked {
min-width: 400px;
}
.page .ck_form.ck_naked {
margin: 50px auto;
max-width: 700px;
}
/* v6 */
.ck_slide_up.ck_form_v6, .ck_modal.ck_form_v6, .ck_slide_up.ck_form_v6 .ck_naked, .ck_modal.ck_form_v6 .ck_naked {
min-width: 0 !important;
}
.ck_form_v6 #ck_success_msg {
padding: 0px 10px;
}
@media all and (max-width: 403px) {
.ck_form_v6.ck_modal .ck_naked {
padding-top: 30px;
}
}
@media all and (max-width: 499px) {
.ck_form_v6.ck_modal .ck_naked + .ck_close_link {
color: #fff;
top: 10px;
}
}
.ck_form_v6.ck_slide_up .ck_naked + .ck_close_link {
right: 10px;
top: -5px;
}
@media all and (min-width: 600px) {
.ck_form_v6.ck_slide_up .ck_naked + .ck_close_link {
right: 35px;
}
}
.ck_select {
height: 42px !important;
}
@media only screen and (max-width: 499px) {
.ck_naked .ck_first_name, .ck_naked .ck_email_address, .ck_select, .ck_naked .ck_subscribe_button {
width: 100% !important;
}
}
.ck_naked .ck_first_name, .ck_naked .ck_email_address, .ck_select, .ck_subscribe_button {
border: 1px solid rgb(0,44,84) !important;
border-radius: 5px !important;
}
@media only screen and (min-width: 500px) {
.ck_naked .ck_first_name, .ck_naked .ck_email_address, .ck_select {
width: 32.5% !important;
}
.ck_naked .ck_subscribe_button {
width: 300px !important;
margin-left: 25% !important;
margin-top: 10px !important;
padding-top: 5px !important;
}
}
.ck_naked {
margin-top: -45px !important;
margin-bottom: -25px !important;
}
.ck_naked .ck_subscribe_button {
text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5) !important;
}
/* This script handles submission and redirect */
function overrideCKFormHandler() { (function ($) {
$("document").ready(function ($) {
form = $("form#ck_subscribe_form");
form.off("submit");
form.submit(function(e) {
e.stopPropagation();
e.preventDefault();
var subButton = form.find("#ck_subscribe_button");
var btnText = subButton.text();
var successMsg = form.parent().find("#ck_success_msg");
var errorMsg = form.find("#ck_error_msg");
subButton.prop("disabled", true).text("Subscribing...");
var showErrorMsg = function() {
errorMsg.parent("div").css("display", "block");
errorMsg.css("opacity", "0").fadeTo(250, 1);
}
data = form.serializeArray()
if (!!document.referrer) {
data.push({ name: "referrer", value: document.referrer});
}
if (form.find(".optIn").is(":checked")) {
data.push({name: "course_opted", value: true})
}
$.ajax({
url: form.attr("action"),
data: data,
method: "POST",
success: function (response) {
/* Replace with your thank you page URL */
window.location.href = "https://wanderingearl.com/subscription-confirmation/"
},
error: function (jqXHR, textStatus, errorThrown) {
subButton.prop("disabled", false).text(btnText);
showErrorMsg();
}
});
});
});
})(window.ckJQ); }
function overrideCKFormWhenReady() {
setTimeout(function(){
if(window.ckJQ) { overrideCKFormHandler(); }
else { overrideCKFormWhenReady(); }
}, 300);
}
overrideCKFormWhenReady();
Hi Derek! I am still in awe of the Romanian tour you guided us on in August this year.
I look at the pictures and can’t believe how perfect you made the trip!
If you are contemplating a tour thru Wandering Earl Tours, DO IT!!!
You will never regret a moment!
Until next time, Derek!
Hey Helen – That’s so awesome to hear such feedback! And I am definitely looking forward to the next time!!
Greetings from Nepal:)
Hey Hope u will add Nepal as well in ur travel List.
I wish to be traveller like u
i am finding out if i could go on your tour.if ok,i want to ask about the tours.i am from singapore.
Hey Allysa – You can definitely join one of my tours! I have had several guests from Singapore. Just send me an email and we can look at the options and which tours you’re interested in!
Please add me to your tour offers.
Thank you.
Can’t wait to hear more about your tours…
Dude, you teased us a few weeks ago saying you’d be posting 2018 tours “soon”… WHERE ARE THEY??? 🙂 Trying to keep my autumn open for one. Thanks!
Hey Tim – They are being released, along with a brand new tours website (which was why it was delayed a little) on Tuesday!!
Hi Earl,
Please do post your experience in India. You have been an inspiration and I have travelled a lot in the country and am working on travelling to other destinations soon. I am in Bangalore India please let me know if you happen to come to Bangalore.
Will do Suryan!
¡Me gusta mucho tu blog de viajes! Siempre leo todo lo que escribes, espero unirme a algún tour pronto, sueño con visitar Asia. Supongo que hablas algo de español ya que has estado varias veces por esta parte del planeta (Latinoamérica), así que aquí va este mensaje en español, aunque sí, hablo inglés…
saludos y espero seguir leyendo sobre ti Earl.
Suerte por esos lares!
Pedro
Hey Earl, I’ve just started reading Travel blogs and I’ve read a few of your blogs and I loved them. I wanna thank you for sharing your thoughts and experience about traveling and motivating young teens such as myself, who are looking for adventure and who wanna know more about this field. Thank you
Hi, Earl? am interested in the amazing trips you offer around the world. kindly inform me how to go about so that i may join you soon. Here in Africa many tourist lands daily, its rare to see my fellow africans go out for tour and hikes.
thankyou.
Hey Charles, look around, there are many African travelers too and specifically in Kenya. But what Earl is offering is amazing. I would love to join one of his tours too.
How was the India tour? Will we see a post about it soon?
Hey Jen – The tour was another huge success! Great group and we all had a great time experiencing India in all of its craziness 🙂 Not sure if there will be a post about this one though…not sure how many posts I can write about this country! Hope you’re doing well!
Good day Earl, so nice to see how you have grown through the years and sharing your love of travel experience with others in a way which cannot be had in larger groups. I have shared your site with others, with hopes to inspire them to travel. One of those, is my son, and he has been traveling in the summer months for 3 years. It is possible , and I hope your experience will reach many.I trust you, and hope to join one of your India trips in my lifetime. Just wanted to let you know, without you knowing, how you are touching lives…….all the best!
Hey Linda – Thank you so much for that kind comment and I’m just happy that to hear that the site has had such a positive effect on some people. That’s wonderful that your son has been traveling each summer for 3 years now! And of course, I look forward to having you join one of my India trips whenever it happens to work out!
[…] Earl Baron le ha ido bastante bien realizando tours en México, India y Rumania, países que ha visitado y ha hablado de ellos en su blog Wandering […]
This is great! I would love to do your India tour but the October 2015 tour dates will not work for me. I hope that you offer this tour again in 2016!
Hey Victoria – Yes, there will definitely be an India tour in 2016!
Awesome, thanks! So excited to hear that! An adventure to look forward to 🙂
Hi Victoria, I am from India. I can help you out with the Indian tour.
[…] helps showcase your abilities or talents. Examples might be speaking engagements, photography or location tours, web design services, etc. Banner advertising on your travel blog will not make you much money, at […]
[…] someone to listen to. He has written books which offer crucial advice and even conducts his own tours of destinations such a Vietnam and Istanbul which “include accommodation, transportation, […]
[…] turned their blog into a job through consulting work, selling their e-book into a print book deal, running tours and creating travel products like my friend Brooke of […]
[…] could become your own tour guide. Wandering Earl offers group tours around the world. As a seasoned traveller he is more than experienced in showing […]
[…] own tours every couple of months to various destinations around the world through my new project, Wandering Earl Tours, my upcoming schedule will take me to Romania/Moldova, India and Socotra Island for my next three […]
[…] Wandering Earl is one of the first and best travel blogs I’ve ever read. I was so captivated by his stories that I emailed him, and he emailed me back within an hour! Woah. I mean, this guy probably gets tons of emails and notifications every day, so to have that kind of rapid response really impressed me. Wandering Earl showed me that writing from the heart is what matters most. You can tell that he really cares about the subject matter he covers, and that he hands you travel solutions instead of just travel opinions. He is also an author of books and has expanded beyond blogging and started giving group travel tours. […]
[…] first person of the tour group (Wandering Earl tour) that I met ended up being my roommate for the tour and we got along famously. I met several others […]
[…] If you want to test it out you can even join Earl on one of his treks. Try it out here: Wandering Earl Tours […]
[…] You can read more about the Wandering Earl Tours concept, as well as feedback from those who have already participated in one my tours, right over here: Wandering Earl Tours […]
Oh, wow! Going to Socotra must be amazing, can’t wait for photos. That’s up high on my wish list!
[…] will be the year that I expand my Wandering Earl Tours project by leading 7 or 8 small group tours to various countries around the world. And in between […]
Yalla, prepare a tour to Syria after the war 🙂 keep up the great work!
[…] others. Last month, I spent three weeks traveling around northwest India on a tour organized by Wandering Earl, and I don’t know if I’ve ever had a more difficult time summing up an […]
I would love to go on the Iraqi Kurdistan with you guys! Unfortunately, that depends on what I heard back this week.
[…] taking is called Wander Across India and it’s led by well-known travel blogger/nomad Wandering Earl. Earl started running tours last year and, when he announced his 2013 itineraries, I jumped at the […]
[…] Tours […]
[…] Tours […]
I read your blog….. I was shore-x staff for 5yrs and now home for 2 yrs… wow… it brought back memmories reading it.. haha.. the good old ship life… 🙂
[…] More on independent travel with the support of a small group […]
Thanks Earl,
I was hoping to make this Romania trip but I don’t think I will have things wrapped up here in the US in time, maybe the next one!!
[…] Earl Baron le ha ido bastante bien realizando tours en México, India y Rumania, países que ha visitado y ha hablado de ellos en su blog Wandering […]
Your tours look so cool! I hope I can go on one of them soon.
Hey Jen – Would be great to have you on board…let me know if you have any questions about any of the departures.
[…] Tours […]
[…] Oh, yeah, he can also tell you where to find ‘a heavenly mango lassi topped with cherries’…and you can join him to one of his unique Wandering Earl Tours. […]
[…] still working out the details but the tour, part of Wandering Earl Tours, will take place either over New Year’s (for the most unique New Year’s celebration you […]
Earl
I am very interested in the visit to Socotra Island and also to visit Yemen as well
So, please keep me in touch when plans develop
Thanks
Ron Wesner
[…] Tours […]
It’s wonderful that your tours are expanding and that you are sharing your vast knowledge and experience with people looking for authentic experiences.
Looking forward to joining you on an upcoming tour.