Different Background for Each post and Page Blogger
In this post you will see how you can add different backgrounds in any specific page or post of blogger, through this you give a new look and beautiful view. It is not difficult, if your knowledge is good in CSS. So, it’s very easy.
How to Add Different Backgrounds In Blogger Post/Page
Step # 1: Login to your Blogger Account and Go to Dashboard > Template > Edit HTML
Step # 2: Click Ctrl + F open search bar and find </head> tag
Step # 3: Copy and paste the following code, just above the </head> tag
Step # 4: Save the template.
Done
How to Add Different Backgrounds In Blogger Post/Page
Step # 1: Login to your Blogger Account and Go to Dashboard > Template > Edit HTML
Step # 2: Click Ctrl + F open search bar and find </head> tag
Step # 3: Copy and paste the following code, just above the </head> tag
Note: Replace, POST-OR-PAGE-URL" with the specific page or post URL where you want to show desired background and do not forget to replace the "BACKGROUND-IMAGE-URL" with direct link of your background image
<b:if cond='data:blog.url == "POST-OR-PAGE-URL"'>
<style>
body {
background-image: url(BACKGROUND-IMAGE-URL);background-position: center; background-repeat:repeat; background-attachment: fixed;
}
</style>
</b:if>
Step # 4: Save the template.
Done
Comments
Post a Comment