Contempo V2 and Full SEO version Blogger Template, Blogspot Theme

Contempo V2 and Full SEO version Download Free Responsive Blogger Template

April 30, 2023
Contempo full SEO Blogger Theme
Hi guys!!! I recently decided to surprise you with a full seo version (with all google page speed recomendation) for one of your favorite themes.

Demo \ Download Watch the video instruction below and do the same customization for your Contempo theme, this will give you good rank results.

Sometimes the page load speed can be a bit below 100, it depends on the load on the Blogger server.

To customize the template for awesome search optimization:
  1. Write meta description for all pages
  2. Turn off Image light box in Settings
  3. Switch comment location to popup style, also in Settings.
  4. Write for each post image ALT text.
  5. To prevent Google from swearing at the table of content widget, add at least one H2 heading title to each post.

Include: Table of content widget and New plugin for lazy load image.

UPD:. I also improve SEO for HomePage: The homepage can generate more traffic than other types of pages from Google. The template also comes with a new content writing tip.

You can also improve your template with gadgets and tricks. But it may affect the optimization of the template. Enjoy ๐Ÿ˜‰

Video instruction

Watch recent video on my youtube channel
 

Contempo V2 (defualt optimization)

Contempo V2 Blogger Template

Contempo V2 Blogger Template: News style, Responsive design, 2 columns, Horizontal menu, Search window, Pagenavigation, Widget about author gplus, Share buttons, Subscribe by email, Blogger comments, Light ad black colors.

Demo Download theme

Share by this in:

12 Comments

avatar
Unknown December 1, 2018 at 4:32 PM

Thank you so much!

avatar
Risa April 3, 2020 at 11:40 AM

thnks infonya

saya masih kesulitan bro membuat theme contempo menjadi responsive
ini masih saya otak atik dulu

bikin panduannya dong..

avatar
Anonymous September 25, 2023 at 1:57 AM

Thanks Friend, how to remove space between post and sidebar, does not look pleasing

avatar
Daniel September 25, 2023 at 5:39 AM

It's not easy to describe. It's best to let it go. I was confused at first too, but later you get used to it.

But if you still really want to, the easiest option is to increase the width of the posts. To do this, you need to find CSS:

.page_body .centered{
box-sizing:border-box;
display:-webkit-box;
display:-webkit-flex;
display:-ms-flexbox;
display:flex;
-webkit-box-orient:vertical;
-webkit-box-direction:normal;
-webkit-flex-direction:column;
-ms-flex-direction:column;
flex-direction:column;
margin:0 auto;
max-width:$(content.width);
min-height:100vh;
padding:24px 0
}

and change here max-width:$(content.width); for example to max-width:1222px;

avatar
Anonymous September 25, 2023 at 6:37 AM

Thanks Friend, I have tried it does the job

avatar
Anonymous September 27, 2023 at 12:48 AM

Any css to remove share buttons in home pages

avatar
Daniel September 28, 2023 at 4:09 AM

There is no share buttons on homepage ๐Ÿคจ

avatar
Anonymous September 28, 2023 at 4:42 AM

Sorry, I am using Essential Blogger Theme I was looking at css to remove homepage share buttons unable to find a code.

avatar
Daniel September 28, 2023 at 6:04 AM

Add this CSS code:
<style>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
.post-share-buttons { display: none;}
</b:if>
</style>

avatar
Anonymous September 28, 2023 at 7:38 PM

Thanks for the help, applied to my blog.

avatar
Anonymous January 30, 2024 at 10:18 PM

Can you describe the script to stop copy paste in blogger. Most scripts do not work.

avatar
Daniel January 30, 2024 at 11:32 PM

Yeaper. Add this CSS in to your theme:

body {
-webkit-touch-callout: none;
-khtml-user-select: none;
-moz-user-select: -moz-none;
-ms-user-select: none;
user-select: none;
}