
Working with shadow-based text effects
Text effects are great ways to present header titles, navigation bars, or content introductions on your blog provided that they're used sparingly. Let's go over a few of the more common effects that we see overused on the web, and how to use them properly.Retro text

That should give you a nice double border effect, with a very 70's look to it. Of course, to get that true 70's vibe you may have to add all kinds of color manipulation, but at least we have the base effect down. Remember though, don't go too crazy with the coloring - and definitely don't go too crazy with the x and y offset for the text shadows (as it could turn out to be unreadable very fast). When it comes to using a retro effect, the best use is in header titles. This is not an effect that would work well with small size text, or descriptive information. Best to let it stick on the top of your blog and leave it alone.text-shadow: 5px 5px 0px #eee, 7px 7px 0px #707070;
Letterpress & inset text
Another popular feature that CSS3 shadow's offer are an inset type of styling, otherwise known as 'letterpress'. This is definitely a hot topic in the world of CSS3 text effects, so let's go over how to do them properly. An inset styling is typically achieved by offsetting the Y-axis a tiny amount to give the impression of a subtle highlight within the immediate background of the text. Often times you will see it being used as an opposite to the background contrast (light vs. dark) so that the effect has more of an impact on the reader. Let's run down an example.Light background, dark text:body { background-color: #888; text-shadow: 0px 2px 3px #666;}
Dark background, light textThat will give off a really nice layered/inset effect that can be used for headers, or blog titles. Use it sparingly though throughout the site, because nothing is worse than someone overusing text-effects. In this case, it would be okay to use in various sub headers or with various sidebars or footer elements - but just make sure you don't use this on an descriptive information. Again, any shadow based text effects should not be used for such a thing.body {background-color: #666; text-shadow: 0px 2px 3px #888;}
Working with images on your blog


Next comes the CSS styling for the image boxes, and the basic bootstrapped styles we are going to use before the text effects come into play. This is pretty standard, and is completely down to your personal preference, so I won't go into what to do with the plain ole' CSS. Just use whatever you prefer. Now comes the important part, the styling for the way that the text is going to be displayed within the image itself. There are a number of ways to do this, but personally I like to keep things simple and use an "ease-in-out" method to work with text inside of images. Getting really fancy with text transitions is nice in some cases, but in a lot of cases it is better to keep it as simple as possible. Something to consider though, is what sort of blog you are writing for. Is it a fashion blog? Or is it an adventure blog? Because if so you may want to customize the transition technique you use to what you think best represents said theme. In this case though (as we said earlier), we are going to work from the point of view of a web designer who wants to have some descriptive text move or transition over his portfolio images. So let's dive in to how we do this transition and then we will go over what is happening.<div><img src="portfolio_image.png" alt="" /> <div> <h2>Website Title</h2> <p>Some descriptive text about the project</p> <a href="#">Read More</a> </div> </div>
In this section, what we are doing is getting the actual image to transition out, and prepping for the text to transition in. We are also identifying that we want the image to leave along the X axis and not the Y axis, so that means we will have a sliding door type of effect. Now we will set up the mouse hover-over effect, and get the transition to start upon this event..image_container img { transition: all 0.3s ease-in-out; } .image_container .text_container { background-color: (whatever you want); transform: translateX(-300px); opacity: 1; transition: all 0.4s ease-in-out; }
As you can see here, what we did was similar to what we did above for the image. We simply brought in the text after the image left, and gave it a + 0.1s delay to make sure it goes smoothly. And that's about it. There are a bunch of other ways that you can customize this, and definitely a ton of other transition effects you can use. Remember though, if working with more advanced transitions don't use them in such a repetitive manner as you would with something as simple as this. They are best used sparingly to emphasize key images..image_container:hover .text_container { transform: translateX(0px);} .image_container:hover img { transform: translateX(300px); transition-delay: 0.1s;} .image_container:hover p { opacity: 1; transition-delay: 0.4s; }
Working with creative layouts
Often, as web designers, we will see the overly used trends that have been abused year in and year out, and want to be a voice for change regarding them. But going against the grain can be a risky practice, especially if you aren't doing it properly (as a note—I am not saying that you have to be creative in the 'right way' because there is no 'right way' to be creative). I mentioned that because I think being creative is by its very definition the unbinding of ourselves from constraints or creative norms, and in fact I would encourage that, but I also think we should be wary of the reason such norms have been ingrained in our web design themes and what we can do to be innovative with them, with that in mind.Unique text alignment

Creative footers

jQuery scrolling
This is one of my favorite ways to do navigation on a website, and I also think it is specifically applicable to navigating posts on a blog. There are a few different ways to work with jQuery for this, so here I will go over what is one of my favorite (and easiest) ways to do some smooth scrolling and then go through what is happening and how to implement it.This is code for vertical scrolling, as horizontal scrolling isn't as desirable.What is going on here may look complicated, but it is actually pretty simple. We are opening a function on the ".class" of the navigation element that we are going to be clicking on (we call this a click-event). So the most important part here is to title the class of the list(ul) to "nav". Or replace the "nav" in the code with whatever you have named that class. And that is pretty much it for a functioning jQuery scroll, just toss that into your website and link to the minified jQuery (preferable) and you are all ready to go. As far as usage goes with a vertical scroll like this, it is pretty unlimited. A lot of people enjoy not having to scroll down manually, they really enjoy the page doing it for them, and it also is a brilliant way to move from post to post on a website, especially if those posts are large. I often will use it to move to various portfolio sub-sections within my blogs or through categories on websites. It is also a perfect technique if you are theming your site such as doing a day to night theme, or themes for your categories or blog topics. I hope some of these techniques were helpful for you all in trying to apply various design aesthetics on your blog. Remember, use them sparingly and try to make sure you act with your best judgement when using flashy effects. We have an obligation to create an internet that's not as ugly as certain aspects of the outside world have become. Though it is a large and overwhelming task, it is one that we can accomplish if we just take it one design at a time and one day at a time. Keep it simple, keep it honest, keep it real, and always put passion in what you do— as it will always shine through. What are your best blog design tips? What makes for a really great blog design? Let us know in the comments!$(function() { $('ul.nav a').bind('click',function(event){ var $anchor = $(this); $('html, body').stop().animate({ scrollTop: $($anchor.attr('href')).offset().top }, 1000); event.preventDefault(); }); });
Dain Miller
Dain Miller is a former Presidential Innovation Fellow at The White House, and mentor for developers at starthere.fm. He now works to lead engineering teams at a distributed media company. You can find him on Twitter @dainmiller or at his website
Read Next
3 Essential Design Trends, November 2024
Touchable texture, distinct grids, and two-column designs are some of the most trending website design elements of…
20 Best New Websites, October 2024
Something we’re seeing more and more of is the ‘customizable’ site. Most often, this means a button to swap between…
Exciting New Tools for Designers, October 2024
We’ve got goodies for designers, developers, SEO-ers, content managers, and those of you who wear multiple hats. And,…
15 Best New Fonts, September 2024
Welcome to our roundup of the best new fonts we’ve found on the web in the previous four weeks. In this month’s edition…
By Simon Sterne
3 Essential Design Trends, October 2024
This article is brought to you by Constantino, a renowned company offering premium and affordable website design
You…
A Beginner’s Guide to Using BlueSky for Business Success
In today’s fast-paced digital world, businesses are always on the lookout for new ways to connect with their audience.…
By Louise North
The Importance of Title Tags: Tips and Tricks to Optimize for SEO
When it comes to on-page SEO, there’s one element that plays a pivotal role in both search engine rankings and user…
By Simon Sterne
20 Best New Websites, September 2024
We have a mixed bag for you with both minimalist and maximalist designs, and single pagers alongside much bigger, but…
Exciting New Tools for Designers, September 2024
This time around we are aiming to simplify life, with some light and fast analytics, an all-in-one productivity…
3 Essential Design Trends, September 2024
September's web design trends have a fun, fall feeling ... and we love it. See what's trending in website design this…
Crafting Personalized Experiences with AI
Picture this: You open Netflix, and it’s like the platform just knows what you’re in the mood for. Or maybe you’re…
By Simon Sterne
15 Best New Fonts, August 2024
Welcome to August’s roundup of the best fonts we’ve found over the last few weeks. 2024’s trend for flowing curves and…
By Ben Moss