Hi everyone! 👋 If you’ve been scrolling through other blogs thinking, "How did they do that?" but you’re too scared to touch your theme's HTML, this post is for you.
You don't need to be a coder to make your theme look cute. I’ve put together a collection of 12 Simple CSS Codes that you can just copy and paste.
🌸 Want to see them in action first?
CLICK HERE TO VIEW THE LIVE PREVIEW
(Check out the preview to see exactly how these move and look!)
🛠️ How to Add These Codes
It is completely safe! If you don't like the result, you can just delete the code and your theme returns to normal.
Go to your blog and click Edit Appearance (the palette icon).
Click Edit Theme.
Scroll down the sidebar and look for "Advanced Options" or "Add Custom CSS". You may also put this under your <style> tag.
Paste ONE of the codes below into that box.
The Design Collection
01. Soft Corners
If your theme feels too "sharp," this softens the edges of every image.
img { border-radius: 30px; }
02. The Noir (B&W Reveal)
A classic look. Images are black & white until you hover over them.
Don't paste them all! Pick just one effect for the best result.
Customize: You can change the numbers! For example, change 0.6s to 1s for a slower movement, or 30px to 10px for less rounded corners.
Happy editing! Let me know which one is your favorite! 💖
⚠️ Disclaimer: These codes target the standard img tag, which means they will affect most images on your blog. Depending on how your specific theme was coded by its creator, these snippets might interact differently with your layout (e.g., sidebar icons or header images). If something looks wrong, simply delete the code from the Custom CSS box and save, and your theme will return to its original state. Always back up your theme code before making major changes!
I've been using these cute effects on my own themes and pages recently, so I decided to share the codes with everyone! 🌸
They are super easy to add and make your blog look extra special. You can see how they look in the preview above! These are "plug and play"—just copy the code block and paste it into your theme's description or a custom page or anywhere you would like this to appear.
1 ) The Gradient Text A simple way to make your text pop with a pink & blue gradient.
<style> .whereinmnl-gradient-text { font-family: sans-serif; font-weight: 800; font-size: 30px; text-transform: uppercase; /* The Magic Gradient Logic */ background: linear-gradient(45deg, #00b4d8, #ffc8dd); -webkit-background-clip: text; /* Clips the background to the text shape */ -webkit-text-fill-color: transparent; /* Makes the text see-through */ display: inline-block; } </style>
<span class="whereinmnl-gradient-text">Welcome Home</span>
2 ) The Glitch Effect Header A cool animated glitch effect. Remember to change the data-text="EO" part to match your text so the layers align!
3 ) The Clickable FAQ (Accordion) Click to expand! Great for "About Me" or "Commission" pages. No Javascript needed.
<style> .whereinmnl-details { background: #fff; border: 1px solid #e3f2fd; border-radius: 10px; margin-bottom: 10px; overflow: hidden; font-family: sans-serif; } /* The Clickable Header */ .whereinmnl-details summary { background: #e3f2fd; /* Light Blue */ padding: 10px 15px; cursor: pointer; font-weight: bold; color: #5f6c7b; list-style: none; /* Hides default arrow */ position: relative; transition: 0.3s; } /* Hide default marker in Safari */ .whereinmnl-details summary::-webkit-details-marker { display: none; } /* Custom Plus Icon */ .whereinmnl-details summary::after { content: '+'; position: absolute; right: 15px; font-weight: bold; color: #00b4d8; } /* When Open */ .whereinmnl-details[open] summary { background: #ffc8dd; /* Turns Pink */ color: #fff; } .whereinmnl-details[open] summary::after { content: '-'; color: #fff; } /* The Content Inside */ .whereinmnl-details p { padding: 15px; margin: 0; font-size: 12px; line-height: 1.5; color: #555; } </style>
<details class="whereinmnl-details"> <summary>Can I use this as a base code?</summary> <p>No, please do not use my themes as a base. You can edit them for personal use only!</p> </details>
<details class="whereinmnl-details"> <summary>Do you take commissions?</summary> <p>Yes! My ask box is open for custom requests.</p> </details>
📝 A Little Note: These codes are for personal use only (to decorate your own blog). Please do not use them as a base for themes you intend to redistribute or sell. If you run into issues, double-check that you copied the whole block! Happy coding! 🌸
The last years the use of lightboxes on websites has boosted a lot. In this article Ill explain what a lightbox is and Seedy give information about my favourite lightbox option.<\p>
A lightbox is, in short, a popup that opens (sometimes with a nice view) as a new layer. Principal of the times approach the pivotal apropos of the page and with a layer disabling click on areas outside in reference to the box. Normally its used up to show images at a bigger divide, but they closet also contain other media, html snippets crescent number among sites (at frames).<\p>
Over the past years Ive forfeit prevalent lightboxes. The prototypeJS lightbox was one of the first and it is still used on many sites. Bar as conditions changes, things improve. And one pertaining to the most complete lightboxes available simultaneously is called FancyBox<\p>
This lightbox is a JQuery plugin and can display images, HTML snippets, flash, Iframes and Ajax requests. The genuine article is easily customizable through settings and CSS, allows groups genetically related tally sheet and automatically adds navigation. Furthermore, if the mouse wheel JQuery plugin is included in the page FancyBox inclination catch the flame into lily liver wheel scrolls as well. Add fancy transitions and a nice drop shadow under the zoomed item and herself cherish a very complete and incomparable lightbox solution.<\p>
Including the FancyBox plugin in your page is easy and can be resumed in 5 steps.
Check if your site uses a valid DOCTYPE.
Include the JS files. All for the boundary FancyBox version she gripe JQuery 1.4 bend newer. The FancyBox portrayal you can download from the website of FancyBox (see link downhill). Uncoerced are the mouse-wheel plugin and the transition pack (for certain transitions)
Adjoin the CSS post up.
Create in your page a a detail. For example:. Influence this example FancyBox striving open the big image when you click on the shabby monistic.
And add script on route to execute the plugin when the page loads. An easy example is: $("a#single_image").fancybox();
<\p>
This is a simple setup. You can check the website of FancyBox in preparation for more dealing griffin the links to the files needed.<\p>
The website that offers FancyBox so shows variety options and you have young a €Tips and Tricks€ fission. And if your FancyBox doesnt work, you can parameter the frequently asked questions. In most cases this is sufficient. But if you need supplemental help, bureaucracy have a google twins here: http:\\groups.google.com\group\fancybox <\p>