<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Creating custom scrollbars with CSS; How CSS isn&#8217;t great for every task</title>
	<atom:link href="http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task/feed" rel="self" type="application/rss+xml" />
	<link>http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task</link>
	<description>blogging about life, the universe, and everything tech</description>
	<lastBuildDate>Sat, 08 Sep 2012 07:06:53 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nesma</title>
		<link>http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task/comment-page-1#comment-48887</link>
		<dc:creator>Nesma</dc:creator>
		<pubDate>Fri, 04 May 2012 14:57:05 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/?p=2359#comment-48887</guid>
		<description>Thanks a lot .. I try learning CSS gradually and this is a big help for me!

I tried using it here .. http://soulfight-a-devianty.deviantart.com/journal/Devious-Journal-Entry-224732884</description>
		<content:encoded><![CDATA[<p>Thanks a lot .. I try learning CSS gradually and this is a big help for me!</p>
<p>I tried using it here .. <a href="http://soulfight-a-devianty.deviantart.com/journal/Devious-Journal-Entry-224732884" rel="nofollow">http://soulfight-a-devianty.deviantart.com/journal/Devious-Journal-Entry-224732884</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tuukka Virtaperko</title>
		<link>http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task/comment-page-1#comment-48849</link>
		<dc:creator>Tuukka Virtaperko</dc:creator>
		<pubDate>Thu, 29 Mar 2012 04:38:22 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/?p=2359#comment-48849</guid>
		<description>Didn&#039;t work, unfortunately. I probably need to call the scrollbar somehow, but don&#039;t know how. All I knew how to do was to copypaste all that into style.css. I know how to edit the CSS itself, but I don&#039;t know how to assign that CSS as the scrollbar of a certain div.</description>
		<content:encoded><![CDATA[<p>Didn&#8217;t work, unfortunately. I probably need to call the scrollbar somehow, but don&#8217;t know how. All I knew how to do was to copypaste all that into style.css. I know how to edit the CSS itself, but I don&#8217;t know how to assign that CSS as the scrollbar of a certain div.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ThinkManify</title>
		<link>http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task/comment-page-1#comment-48808</link>
		<dc:creator>ThinkManify</dc:creator>
		<pubDate>Tue, 21 Feb 2012 17:50:51 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/?p=2359#comment-48808</guid>
		<description>@dion: In my own website, I built in a styleswitcher by dynamicdrive.com - it allows you to make a list of styles, and when clicked, change the overall style of the whole webpage. URL: http://dynamicdrive.com/dynamicindex9/stylesheetswitcher.htm

BTW: This is awesome.</description>
		<content:encoded><![CDATA[<p>@dion: In my own website, I built in a styleswitcher by dynamicdrive.com &#8211; it allows you to make a list of styles, and when clicked, change the overall style of the whole webpage. URL: <a href="http://dynamicdrive.com/dynamicindex9/stylesheetswitcher.htm" rel="nofollow">http://dynamicdrive.com/dynamicindex9/stylesheetswitcher.htm</a></p>
<p>BTW: This is awesome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task/comment-page-1#comment-48794</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 07 Feb 2012 15:31:54 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/?p=2359#comment-48794</guid>
		<description>demo of the solution can be found (probably not long term) at worknetnow.com/demo/webkit-custom-scrollbars.htm</description>
		<content:encoded><![CDATA[<p>demo of the solution can be found (probably not long term) at worknetnow.com/demo/webkit-custom-scrollbars.htm</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task/comment-page-1#comment-48793</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 06 Feb 2012 21:23:48 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/?p=2359#comment-48793</guid>
		<description>Got the three part thumb to work.  The trick is the background-clip property.

You set a transparent background (or padding, if you prefer [both work]) to the height of one of the end caps, and set their position as appropriate; no-repeat.  The real trick is the center piece.

For the center piece, you set background-clip:content-box; the end caps are set to background-clip:border-box (or padding-box if you used padding for spacing).

This way, the size of the box really only controls the size of the center segment... even if size is set to 0, the end caps will still show up.

Seems to work pretty flawlessly.

Will attempt to paste code, but will probably get code-sniffer-nipped.

		#test
		{
			padding:25px 0px;
			
			/* Padding = Height of one cap */
			
			height:200px;
			width:50px;
			
			/* width = width of cap */
			
			background:url(thumbTop.png), url(thumbMiddle.png), url(thumbBottom.png);
			background-position:top left, top left, bottom left;
			
			/* background size of individual pieces.  Middle height irrelevant */
			background-size:50px 25px, 50px 0px, 50px 25px;
			
			background-repeat: no-repeat, repeat-y, no-repeat;
			background-clip: padding-box, content-box, padding-box;
			background-origin:padding-box;
		}</description>
		<content:encoded><![CDATA[<p>Got the three part thumb to work.  The trick is the background-clip property.</p>
<p>You set a transparent background (or padding, if you prefer [both work]) to the height of one of the end caps, and set their position as appropriate; no-repeat.  The real trick is the center piece.</p>
<p>For the center piece, you set background-clip:content-box; the end caps are set to background-clip:border-box (or padding-box if you used padding for spacing).</p>
<p>This way, the size of the box really only controls the size of the center segment&#8230; even if size is set to 0, the end caps will still show up.</p>
<p>Seems to work pretty flawlessly.</p>
<p>Will attempt to paste code, but will probably get code-sniffer-nipped.</p>
<p>		#test<br />
		{<br />
			padding:25px 0px;</p>
<p>			/* Padding = Height of one cap */</p>
<p>			height:200px;<br />
			width:50px;</p>
<p>			/* width = width of cap */</p>
<p>			background:url(thumbTop.png), url(thumbMiddle.png), url(thumbBottom.png);<br />
			background-position:top left, top left, bottom left;</p>
<p>			/* background size of individual pieces.  Middle height irrelevant */<br />
			background-size:50px 25px, 50px 0px, 50px 25px;</p>
<p>			background-repeat: no-repeat, repeat-y, no-repeat;<br />
			background-clip: padding-box, content-box, padding-box;<br />
			background-origin:padding-box;<br />
		}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Design Watford</title>
		<link>http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task/comment-page-1#comment-48681</link>
		<dc:creator>Web Design Watford</dc:creator>
		<pubDate>Tue, 13 Dec 2011 18:20:58 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/?p=2359#comment-48681</guid>
		<description>Glad I stumbled across this site, been looking for a way to modify the standard CSS overflow scrollbar and will be trying this out on our newest build - will let you know how we get on!</description>
		<content:encoded><![CDATA[<p>Glad I stumbled across this site, been looking for a way to modify the standard CSS overflow scrollbar and will be trying this out on our newest build &#8211; will let you know how we get on!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Japa Alekhin</title>
		<link>http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task/comment-page-1#comment-48065</link>
		<dc:creator>Japa Alekhin</dc:creator>
		<pubDate>Thu, 24 Mar 2011 05:46:30 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/?p=2359#comment-48065</guid>
		<description>hi i&#039;m looking for a way to create a really custom scrollbar... i have an idea to create custom divs and graphics and make it work through js/jquery.. but i&#039;m trying to look for a more non-troublesome way...</description>
		<content:encoded><![CDATA[<p>hi i&#8217;m looking for a way to create a really custom scrollbar&#8230; i have an idea to create custom divs and graphics and make it work through js/jquery.. but i&#8217;m trying to look for a more non-troublesome way&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthieu</title>
		<link>http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task/comment-page-1#comment-48014</link>
		<dc:creator>Matthieu</dc:creator>
		<pubDate>Mon, 07 Mar 2011 05:35:01 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/?p=2359#comment-48014</guid>
		<description>Address changed: www.nightmaredream.com all in a short :P
Scroll theme still work well today :)</description>
		<content:encoded><![CDATA[<p>Address changed: <a href="http://www.nightmaredream.com" rel="nofollow">http://www.nightmaredream.com</a> all in a short :P<br />
Scroll theme still work well today :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthieu</title>
		<link>http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task/comment-page-1#comment-47666</link>
		<dc:creator>Matthieu</dc:creator>
		<pubDate>Thu, 25 Nov 2010 02:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/?p=2359#comment-47666</guid>
		<description>please keep that comment hidden too... i have a hard time with using this to resize a div inside a skinned div... On the right side, when i select a corner and move it, the vertical slidebar moves a step of its own size on the left and leave a blank space of its size on the right... I&#039;m trying to deal with it but it currently displays like &quot;this http://www.nightmaredream.com/Sanstitre-4.html &quot;

This tool really makes my year! With this bars-kit i will really end up with a perfect page :)

Another question that i may get answered if i read the post again is.. how can i add repeat regions to the scrollbar&#039;s background? I&#039;d like to make a black and white candycane style background that would mirror to center and i&#039;d like it to repeat x or y :)

Well... i whish my communication method of asking to publish not the comment doesn&#039;t incomfort you... :P</description>
		<content:encoded><![CDATA[<p>please keep that comment hidden too&#8230; i have a hard time with using this to resize a div inside a skinned div&#8230; On the right side, when i select a corner and move it, the vertical slidebar moves a step of its own size on the left and leave a blank space of its size on the right&#8230; I&#8217;m trying to deal with it but it currently displays like &#8220;this <a href="http://www.nightmaredream.com/Sanstitre-4.html" rel="nofollow">http://www.nightmaredream.com/Sanstitre-4.html</a> &#8221;</p>
<p>This tool really makes my year! With this bars-kit i will really end up with a perfect page :)</p>
<p>Another question that i may get answered if i read the post again is.. how can i add repeat regions to the scrollbar&#8217;s background? I&#8217;d like to make a black and white candycane style background that would mirror to center and i&#8217;d like it to repeat x or y :)</p>
<p>Well&#8230; i whish my communication method of asking to publish not the comment doesn&#8217;t incomfort you&#8230; :P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Design Brisbane</title>
		<link>http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task/comment-page-1#comment-47509</link>
		<dc:creator>Web Design Brisbane</dc:creator>
		<pubDate>Fri, 29 Oct 2010 09:32:31 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/?p=2359#comment-47509</guid>
		<description>I have been using this on one of our chrome only SAAS&#039;s, and noticed recently that the actual draggable / scrollable part of the scroll bar has been warped and is now a little thinner? Any thoughts?</description>
		<content:encoded><![CDATA[<p>I have been using this on one of our chrome only SAAS&#8217;s, and noticed recently that the actual draggable / scrollable part of the scroll bar has been warped and is now a little thinner? Any thoughts?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
