
I’ve been asking for many times on how do I create that sliding showcase on my sidebar. well… I forgot where I’ve grab it originally, and I’m not a good tutorial teller, so I pack it up for you.

downloaded 806 times.
It’s css based and easy to embed it to your blog/website, if you need that ’slider’ transition effect just like mine, you need to use Prototype as well, put the following into your markup file:
<script type="text/javascript" src="prototype.js"></script>
I’m a pullquote, a snippet of content what I am doing is to catching your attention.
When you are writing something and intend to catching attention of readers, put a pullquote as a snippet of preview the content is getting popular on blogs/websites. Both pullquote & blockquote are widely uses on newspapers, magazines, NYtimes.com is an actual web-based media to taking look at them.
This article will show how to get a pullquote with CSS. Technically, pullquote is different from blockquote, it is not a HTML element, which means we should markup it in HTML with heading element such as <h4> or <h5> and we use CSS to define it in a way you want.
Here is markup:
<h4 class="pullquote">I'm a pullquote, a snippet of content.</h4>
and put the following to CSS file, those will control how it looks like:
.pullquote {
padding: 10px;
float: right;
width: 200px;
margin:10px 0 10px 10px;
border-top:2px solid #ffc300;
border-bottom:2px solid #ffc300;
text-align: center;
line-height: 22px;
font-family: georgia, verdana, Arial, Helvetica, sans-serif;
color:#ccc;}
It’s all done! A nice pullquote will work just fine with your content of website/blog, enjoy.