GuidePedia

0
In this tutorial you will see how you can add different backgrounds in any specific page or post of blogger, it will give your page to their own unique look. well this is not a difficult task, if you are good in CSS. all you have to do is just add a simple snippet of CSS code inside your blog’s HTML, then it will be done within no time.
How to Add Different Backgrounds In Blogger Post/Page
STEP : 1 In your blogger dashboard > Go to Template > Edit HTML
STEP : 2 Press CTRL + F to find </head> tag in your blog’s HTML
STEP : 3 Copy and paste below code, just above the </head> tag
<b:if cond='data:blog.url == &quot;POST-OR-PAGE-URL&quot;'>
<style>
body {
background-image: url(BACKGROUND-IMAGE-URL);background-position: center; background-repeat:repeat; background-attachment: fixed;
}
</style>
</b:if>
Now, replace “POST-OR-PAGE-URL” with a specific page or post URL where you want to show your desired background and also do not forget to replace the “BACKGROUND-IMAGE-URL” with direct link of your background image.
Finally, save your template, and you have done !

Post a Comment

 
Top