in css by fyd on 25 Apr 2008

A quick CSS tip. Don't want your css border to have the same color for every side. Well, you can make each side have a different color - it's easy.

.exampleBox
{
width: 100px;
height: 100px;
border: 3px solid #000000;
border-color: #ff00ff #00ff00 #0000ff #00ffff;
}

Some text in the box

Let's take a closer look at the css border properties. We start off by creating a border: that has a 3px 'stroke' that is solid and the color black. The next property we use is border-color:. The format here is TOP, RIGHT, BOTTOM, LEFT - or clockwise around the square starting from the top. Even though we set a color in the border: property, we put border-color below it which gives it precedence - or it 'overwrites' the border's color.

Need the HTML - I used an embedded stylesheet here, but this will work the same in an external stylesheet.

<html>
<head>
<title>CSS Different Colored Border</title>

<style type="text/css">
.exampleBox
{
width: 100px;
height: 100px;
border: 3px solid #000;
border-color: #ff00ff #00ff00 #0000ff #00ffff;
}
</style>
</head>

<body>

<div class="box">
<p>
Some text in the the box
</p>
</div>

</body>
</html>

Popularity: 7% [?]

in resources by fyd on 23 Apr 2008

If you haven't seen these rap videos by Poetic Prophet, aka SEO Rapper, you've gotta watch, or at least listen, to them. This guy is actually rapping about web design and search engine optimization, and they are full of good information. All the lyrics are posted on YouTube, just click (More info) on the right just below the users info - in case you can't keep up with what he is saying.

He has a few other videos…
Link Building 101 Rap
Paid Search 101 Rap
Social Media Addiction Rap
Conversion Closing Rap
Worth a watch and you might actually learn something.

Popularity: 5% [?]

in photoshop by fyd on 21 Apr 2008

Adding textures to your work in Photoshop can really add a sense of detail. Depending on the textures and how you use them, they can help make a piece look more realistic, or grungy, or even cartoonish. They can really define a Photoshop piece. So, let's learn how to bring a texture image into Photoshop and use it to help our artwork look better.
(more…)

Popularity: 19% [?]

in resources by fyd on 16 Apr 2008

We got an idea on how to implement custom textfields in CSS and HTML in an earlier post. So, I went ahead and put together a few free textfield or search field background images. These are just some examples to give you an idea of what you can create. I made them in Illustrator and they are free. I have also included the HTML and CSS for each image as a reference. The download below comes with png files, gif files, the CSS, the HTML, and the Illustrator file. Everything you need to get started.

HTML EXAMPLE

download
Download Files

custom text field images

Popularity: 6% [?]

in resources by fyd on 15 Apr 2008

The original icons can be found in a post at Smashing Magazine Fresh, Free and Gorgeous RSS/Feed Icons.

rss news icon

Every time I see this icon all I think of is putting the little orange guy on a toilet. It's just the newspaper and the sitting position he his in - it makes me laugh. So, I went into Illustrator and

toilet guy rss
Just a little humor.

So, it doesn't look nearly as great as the original icon set. The set looks great - very well done - thanks Dirceu Veiga - Icons by: FastIcon.com - nice work.

Popularity: 5% [?]

« Previous PageNext Page »