We Are Creative Design Agency

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum, fuga, consectetur sequi consequuntur nisi placeat ullam maiores perferendis. Quod, nihil reiciendis saepe optio libero minus et beatae ipsam reprehenderit sequi.

Find Out More Purchase Theme

Our Services

Lovely Design

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent feugiat tellus eget libero pretium, sollicitudin feugiat libero.

Read More

Great Concept

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent feugiat tellus eget libero pretium, sollicitudin feugiat libero.

Read More

Development

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent feugiat tellus eget libero pretium, sollicitudin feugiat libero.

Read More

User Friendly

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent feugiat tellus eget libero pretium, sollicitudin feugiat libero.

Read More

Recent Work

Sunday, 2 April 2017

Copying all the posts from one blog to another

Follow these steps to copy all posts from one blog to another

1  Log in to Blogger.

2  Go to the export tab from the  Settings / Other tab.

3  Click on Export Blog.

Export-blog window on the old Blogger interface:
the new interface looks a little different, but has the same links

3a  If you are using the new interface, click Download Blog on the confirmation message window:



4  Your computer will download a file.   For Windows users, it will probably be put in the My Documents / Downloads file.  Or you system may use another place, or it may ask you where to put it.   Whatever happens, you will need to know where this file is saved to.

5  Open the blog that you want to move the posts to
(You may need to log out and in again, or perhaps just switch to different browser or tab)

Delete (using Posting / Edit Posts) any Posts that are already there, but which you don't want in the refreshed blog.

6  Go to Settings > Other and click Import Blog.  When the box opens, choose the exported file that you made earlier, and enter the security-text.
Import file selection screen in the new interface:
the old version of Blogger is very similar.

7  Choose whether or not to automatically publish all imported posts.  
Only tick the box if you DO want the posts automatically imported.   If you don't tick it, the posts will be loaded, but with have status of Draft, so won't be visible by readers until you publish them.

8  Click Import Blog.

Check that the import worked successfully, by looking at the blog, and also at the list of posts under Edit Posts:  are the right number of posts there, do they have the right labels etc.


Results

IMG redCowRoadworks4586All the posts from the source blog will be copied to the destination blog.

Many of the post characteristics will be the same as in the original blog.  This includes:
  • title
  • post contents
  • published-date and time
  • label(s)
  • post-author.


Any comments from the source blog will also be copied over - sometimes it takes a few hours for the links for them to be re-establshed properly.

The URL for each post will be based on the URL of the blog you have imported them into and the publication-date that the posts had in the source blog - for example:
www.YourNewBlogName.blogspot.com /2009/05/name-based-on-post-title.html

Any internal links in the blog will still point to the post in the old blog
For example this link points to a popular article in Blogger-HAT.  
If I export-and-imported this post into a new blog, the link would still point to the same place, ie the post in Blogger-HAT - not to the post in the new blog.

Any pictures, videos etc in the old blog will still be in the same place that they were in (Picasa-web-albums, YouTube, Google Videos etc).

If you have imported more than the number of posts that Blogger allows per day (currently 50 I think) then to make any more posts today you will need to complete the captcha-test (ie entering the letters in the funny-shaped word).   This will go away approximately 24 hours after you last enter more that the maximum-posts-per-day.


Importing to the same blog

If you try to import posts into the same blog that you exported them from, Blogger will not import any posts, and give you an error message.

If you do want to do this (eg to create a duplicate set of posts), then do the export, change some small detail of the original posts title or date/time, and then do the import.

Friday, 10 March 2017

How to add the contact form to Blogger

How to add the contact form to Blogger

Login to your Blogger Dashboard and Navigate to the Layout Page
Click on the Add a Gadget Link and select More from the left Menu. You can add the add the brand new contact form the right side list
add-contact-form-in-blogger
You can set an appropriate title for the Gadget and Save it.
configure-blogger-contact-form

Once it’s done, you should see the slick and clean Contact Form widget added to your blog’s sidebar.The contact form has the below input fields
  1. Name – Name of the reader who is sending you a message
  2. Email – Email address of the reader who is sending you a message
  3. Message – The message which the reader wants to send to you.
  4. Below is the screenshot of the Contact Form Widget added to one of my test blogs.
    blogger-contact-form
    The Contact form has validations in place and error messages will be displayed in case the user misses out the email address or message. Though the form doesn’t have any captcha validation,it is less likely to be attacked by spam bots as the send button is triggered by JavaScript.
When the reader sends you a message via the contact form, you will receive it straight in your inbox. Copies of this message will be sent to each admin user of the blog. Below screenshot will give you an idea of how the message will look like. contact-form-email-received
You can directly reply back to to the sender from you email. If you want to move the Contact Form to a separate page, then checkout the tutorial on creating a separate contact page for blogger.
You can change the look and feel of the contact form by altering the CSS styles. We will try to publish another tutorial which will help you in customizing the contact form. You can see a slightly customized version of the contact form widget on our Contact Page.

How to take your Blogger Contact Form to a separate Page

Blogger Contact Form to a separate Page

Follow the below steps to move the Contact Form to a separate page. If you would like to see a demo, you can check out my Contact page.
  1. First, add the contact form to your blog sidebar and test it. Make sure that you are receiving emails in your inbox when you click the send button.(This is an optional step)
  2. Now remove the Contact Form gadget from your sidebar. You can do that on the layout page.
    remove-contact-form-gadget-from-sidebar
  3. Now find out the unique blogID of your blog. When can find this blogID on the URL bar of your browser when you are on any page on your blog’s dashboard. This blogID is required to generate the code for the new Contact Form page. The below screenshot explains how you can find out the blogId. Find this number and note it down. This number will be needed to generate code for the contact form.
    find-blogger-blogID
  4. Now create a new page in your blog
    create-new-page-in-blogger Copy and edit the below code snippet. Editing the blogId number is mandatory(Use the number which you noted down in step 2)
     
     
    <script>
    var blogId = '8694494030520005341';//this number should be mandatorily edited.
    //The below message 5 Strings can also be edited
    var contactFormMessageSendingMsg ='Sending...';
    var contactFormMessageSentMsg = 'Your message has been sent.';
    var contactFormMessageNotSentMsg = 'Message could not be sent. Please try again later.';
    var contactFormEmptyMessageMsg ='Message field cannot be empty.';
    var contactFormInvalidEmailMsg = 'A valid email is required.'
    
    var widgetLoaded=false;
    function sendEmailMsg() {
    if(widgetLoaded== false) {
    _WidgetManager._RegisterWidget('_ContactFormView', new _WidgetInfo('ContactForm1', 'sidebar', null, document.getElementById('ContactForm1'), {'contactFormMessageSendingMsg': contactFormMessageSendingMsg , 'contactFormMessageSentMsg': contactFormMessageSentMsg , 'contactFormMessageNotSentMsg': contactFormMessageNotSentMsg , 'contactFormInvalidEmailMsg': contactFormInvalidEmailMsg , 'contactFormEmptyMessageMsg': contactFormEmptyMessageMsg , 'title': 'Contact Form', 'blogId': blogId, 'contactFormNameMsg': 'Name', 'contactFormEmailMsg': 'Email', 'contactFormMessageMsg': 'Message', 'contactFormSendMsg': 'Send', 'submitUrl': 'https://www.blogger.com/contact-form.do'}, 'displayModeFull'));
    widgetLoaded=true;
    document.getElementById('ContactForm1_contact-form-submit').click();
    }
    return true;
    }
    </script>
    <form name='contact-form'>
    <div>Your Name : </div>
    <input class='contact-form-name' id='ContactForm1_contact-form-name' name='name' size='30' type='text' value=''/>
    <div>Your Email: <em>(required)</em></div>
    <input class='contact-form-email' id='ContactForm1_contact-form-email' name='email' size='30' type='text' value=''/>
    <div>Your Message: <em>(required)</em></div>
    <textarea class='contact-form-email-message' id='ContactForm1_contact-form-email-message' name='email-message' rows='5'></textarea>
    <p></p>
    <input class='contact-form-button contact-form-button-submit' id='ContactForm1_contact-form-submit' type='button' value='Send' onclick="sendEmailMsg()"/>
    <div style='text-align: center; max-width: 450px; width: 100%'>
    <p class='contact-form-error-message' id='ContactForm1_contact-form-error-message'></p>
    <p class='contact-form-success-message' id='ContactForm1_contact-form-success-message'></p>
    </div>
    </form>
     
     
    While creating the Page, you have to switch to the HTML mode as shown in the image below. Then paste the above code into the post editor(after proper editing), disable the comments and publish your page.
    blogger-comment-form-on-separate-page
  5. Once the page is published, go to this new page fill out the contact form, click on the send button and verify that it sends out the email to all the Blog admins.

Sunday, 5 March 2017

Jehovah By Makuo Israel


















Verse 1:
How can I describe you
Situations bow below you
The works of your hands amaze me
Darkness gives way before you
The sun, moon, and stars
The hills, sea, and mountains
Show forth your splendor
The leaves of the tree
Applaud your greatness
The bird of the air
Declare
Chorus:
You are the one who was and is to come
Alpha and Omega
You are Jehovah, You are Jehovah
You are the one who was and is to come
Alpha and Omega
You are Jehovah, You are Jehovah
Repeat Verse 1
Repeat Chorus
oh oh oh
No one else like you
oh oh oh
None can do the things you do
oh oh oh
No one else like you
You are Jehovah, Jehovah
oh oh oh
You make the blind the see
oh oh oh
You make the lame to walk
oh oh oh
No one else like you
You are Jehovah, Jehovah
You are
oh oh oh
The are the one who was and is to come
You make the blind the see
You make the lame to walk
Who is like you o Lord
oh oh oh

Ezem By Enkay
















Ezem (3x) na di ndu (My king is everlasting)
Onye nwe anyi ezitewo ndi muozi ya ka biakutem (For he has given his angels charge over me)
Onodu’m n’emetuya n’obi (Because everything that concerns me touches his heart)
Ezem (3x) na di ndu (My king is everlasting)
Adilips in chorus
Oji oku eri aja ( He that consumes sacrifices with fire)
Oku n’erere (Consuming fire)
Oku n’aza ekpere (The God that answers by fire)
Agiga na to agbu (He that sets the captives free)
Captain of the host of heaven
My shield and buckler
Enwerem enyi (I have a friend)
Nke na egbo nkpam nile (That meets all my my needs)
Ulo’m di anya karia kpakoando (whose home is beyond the moon and stars)
Mara na nka bu oke ihe omere ( Everything he has done for me)
Nke m ji na eti Halleluyah (makes me shout Hallelujah)
Adlips in last Chorus

King of kings
Lion of the tribe of Judah
You are seated in heaven and earth is your footstool
I bow before your throne
I worship at your feet
Eze
Ogbajiri igwe kpo ya nku (He that breaks iron like wood)
Akpoaza mee (My prayer answering God)
You are worthy Jesus
Ezem na adi ndu (My everlasting King).

To Thee We Come By Funmi Sax Olujoshua











To thee we come
Great jehovah
Our awesome God we praise you name
May every soul that worships now
Be blessed beyond comprehension
Chorus
Our awesome God
Ancient of Days
Arise now Lord receive your praise
May every tongue that worships you
Return to give testimony

Our Blog

55 Cups
Average weekly coffee drank
9000 Lines
Average weekly lines of code
400 Customers
Average yearly happy clients

Our Team

Tim Malkovic
CEO
David Bell
Creative Designer
Eve Stinger
Sales Manager
Will Peters
Developer

Contact

Talk to us

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolores iusto fugit esse soluta quae debitis quibusdam harum voluptatem, maxime, aliquam sequi. Tempora ipsum magni unde velit corporis fuga, necessitatibus blanditiis.

Address:

9983 City name, Street name, 232 Apartment C

Work Time:

Monday - Friday from 9am to 5pm

Phone:

595 12 34 567

featured Slider

?max-results="+numposts1+"&orderby=published&alt=json-in-script&callback=bthemez_slider\"><\/script>");

Follow us

Need our help to upload or customize this blogger template? Contact me with details about the theme customization you need.

Instagram