
How to add Note, Warning box in Blogger?
Before doing these steps we recommend you to take a backup of your theme, By chance, if any mistake has been made you can restore it later!
- First, go to your Blogger dashboard
- Then go to the Theme section
- Then click on the drop-down icon near Customize option
- Then click on the Edit HTML option
- Then find and
]]></b:skin>
paste this CSS just above it
/* Note, Warning Box */ .note{position:relative;padding:16px 20px 16px 50px; background:#F3E5F5;color:#3c4043; font-size:.85rem;line-height:1.6em;border-radius:10px;overflow:hidden} .note::before{content:'';width:60px;height:60px;background:rgba(0,0,0,.15);display:block;border-radius:50%;position:absolute;top:-12px;left:-12px;opacity:.1} .note::after{content:'\002A';position:absolute;left:18px;top:16px; font-size:20px; min-width:15px;text-align:center} .note.wr{background:#ffdfdf;color:#48525c} .note.wr::before{background:#e65151} .note.wr::after{content:'\0021'}
We gave you two HTML codes one is for a note box and one is for a warning box, you can use any of that you want.
Note box
<p class='note'>Your_text_here</p>
Warning box
<p class='note wr'>Your_text_here</p>
Don't forget to add your text in Your_text_here
section!
Want to see how it looks?
View demo