How to Add a Vintage Style to Images In Blogger using CSS

To get that vintage Instagram effect on your pictures, you don't have to use a program, now you can use CSS and get a similar result! Th...

To get that vintage Instagram effect on your pictures, you don't have to use a program, now you can use CSS and get a similar result! The following trick will apply a shadow inside the image, add a back border, and on top of the image, add another semitransparent image with a grunge style that will give a vintage touch.

You can see a demo on the test blog - move the cursor over the image and it changes back to normal (notice that borders remain the same):



Obviously, there will be images that will fit better these effects than others, but regardless of that we do, there should be made a few observations:
- this effect is made with CSS and it will not recognize some browsers, especially Internet Explorer. So this effect might not work on older versions of IE. 
- the images are not centered, you will have to align them to the left (default) or to the right.

Now let's add the CSS code for applying this vintage Instagram effect on our images.

Adding Instagram-like Vintage Effect to Blogger Images

Step 1. From your Blogger dashboard > go to "Template" > "Edit HTML"



Step 2. Click anywhere inside the code area and press the CTRL + F keys to open Blogger' search box


Step 3. Type or paste the following tag inside the search box:
</head>
Step 4. Just above </head> add the following CSS style:
<style>
.vintage img {
padding:0;
float:left;
}
.vintage {
border:10px solid #000;
position: relative;
float: left; /* Change to right if you want the images to be aligned to the right */
margin-right: 20px;
margin-bottom: 20px;
}
.vintage:before {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(255,102,0, 0.6); /* sepia */
background-image:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpqcz1n9CuaKfDQVvjid4rYIer9fmdsQG2D19mwRD5U6AB6GfjguW_dOq4AHL9QZwebinku9DNmMZplPHnLvtUj6U9TFA-ni51SHCK1m8JIJzsL-_GePi3xzbPop1mT5YfpiwCPEnDNQ/s0/grunge.png);
background-size: cover;
box-shadow: inset 0 0 50px #000, inset 0 0 50px #000, inset 0 0 50px #000;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
transition: all .1s;
}
.vintage:hover:before {
background: none;
box-shadow:none;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
transition: all .1s;
}
</style>
Note: The line in bold that corresponds to the color of the image, can be changed to any other color; here are some examples of traditional vintage:
background-color: rgba(0,0,255, 0.5); /* blue */
background-color: rgba(0,255,0, 0.5); /* green */
background-color: rgba(0,255,255, 0.5); /* cyan */
background-color: rgba(255,0,0, 0.5); /* red */
background-color: rgba(255,0,240, 0.5); /* violet */
If you want the image not to change to its original state on mouse hover, then remove the last code:
.vintage:hover:before {
background: none;
box-shadow:none;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
transition: all .1s;
}
Step 5. Click the "Save Template" button to save the style.

Step 6. Finally, add the following HTML code inside the HTML section of your posts each time you want to apply the vintage effect to an image:
<div class="vintage" style="clear:both;">
<img border="0" src="URL of the image" />
</div>
Replace the text in blue with the url of your picture.

And that's it, with this little experiment you can have your vintage-style images using CSS only.

COMMENTS

HawkHost Sale 25% Ending Soon

SaibABC's Contact Form:

Name

adsense,10,adsense optimization,4,adsense tips,5,Amp,3,backlinks,2,Beautiful,26,Beautifully,3,Beauty,15,beginner's guide,12,Blog Design,57,Blogger,22,blogger pages,4,blogger posts,11,blogging tips,3,Bolero Hot,13,click bombing,1,Comedies,10,Comedy,8,Comments,9,css,27,Cuisine,32,Cuisines,39,custom domain,2,Dab Neeg,6,DabNeeg,36,Facebook,4,Fashion,27,Fighting,12,firebug,1,font awesome,1,GoodTrick,58,google analytics,1,google plus,4,Grid Style,17,HealthLife,57,Hmong Health,11,Hmong Music,6,homepage,1,how to,54,Hunting,55,Image Effects,13,Information,17,instagram,2,Instrument,5,invalid clicks,1,javascript,10,jQuery,16,KabTxuj,28,Karaoke,19,Karaoke Hit,12,labels,2,Liste Style,6,make money online,8,menus,7,Movie Hot,37,Movies,18,Music Hot,41,Musical,100,Navigation,5,navigation menu,5,Other Clips,6,popular posts,5,posts,11,recent comments,1,recent posts,3,related posts,3,robots,1,Sad Songs,17,SEO,16,sitemap,1,slideshows,3,social media,8,social media plugins,4,statcounter,1,static pages,2,Technology,17,Template,12,Templates,7,threaded comments,3,tools,1,Travels,1,Video Fight,7,Video Hot,22,Video Hunt,30,Widgets,47,Xov Xwm,2,
ltr
item
SaibABC - News, HealthLife, Beauty, Tips: How to Add a Vintage Style to Images In Blogger using CSS
How to Add a Vintage Style to Images In Blogger using CSS
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgekRywREzDwxkqeE0xA98n0BO0EoCDU_WsSbTszvG6mwM9zNb3vILlYezTnu_wXbm65CF6tgFGU5-9nxpFiRz-8fW_pdFefBB3RZKcY7ZH9x3mt3TTPkVPleGu5GUPty2YJlU1glWGiLVT/s1600/add-instagram-like-vintage-effect-to-blogger-images-with-css.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgekRywREzDwxkqeE0xA98n0BO0EoCDU_WsSbTszvG6mwM9zNb3vILlYezTnu_wXbm65CF6tgFGU5-9nxpFiRz-8fW_pdFefBB3RZKcY7ZH9x3mt3TTPkVPleGu5GUPty2YJlU1glWGiLVT/s72-c/add-instagram-like-vintage-effect-to-blogger-images-with-css.png
SaibABC - News, HealthLife, Beauty, Tips
https://saibabc.blogspot.com/2020/03/how-to-add-vintage-style-to-images-in.html
https://saibabc.blogspot.com/
https://saibabc.blogspot.com/
https://saibabc.blogspot.com/2020/03/how-to-add-vintage-style-to-images-in.html
true
7959548849429202663
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy