<?xml version="1.0" encoding="utf-8"?><!-- generator="wordpress/1.5" -->
<rss version="0.92">
<channel>
	<title>Alex Mauzon</title>
	<link>http://www.mauzon.com</link>
	<description>Some coding and programming tricks, ideas, notes: xHTML/dHTML, CSS, JavaScript etc</description>
	<lastBuildDate>Sun, 24 Feb 2008 18:29:28 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>

	<item>
		<title>An ultimate solution for IE6 position: fixed problem</title>
		<description><![CDATA[Most important (and complex) problem is to position some container in the vertical center of long page (with scroller) in IE6.

This is an ultimate solution (at least I think so) and I have to say HUGE THANKS to Vadim Makeev aka Pepelsbey for urgent and completely satisfactory help.

This is code fragment from working site and [...]]]></description>
		<link>http://www.mauzon.com/?p=89</link>
	</item>
	<item>
		<title>How to implement :first-child and directly nested children for IE6</title>
		<description><![CDATA[Correct CSS:

#someid div {color: blue;}
#someid div:first-child {color: red;}
#someid &gt; div {color: green;}
#someid div div {padding-left: 2em;} 
/* 
just to show some indend and separate direct children to nested ones 
*/


IE6 CSS:

&lt;!--[if IE 6]&gt;
&lt;style type="text/css"&gt;
/* 
FIRST CHILD AND NESTED CHILDRED:
1st one for :first-child
2nd one for all other directly nested childred
*/
#someid div {
&nbsp;&nbsp;color: expression(this.previousSibling == null ? [...]]]></description>
		<link>http://www.mauzon.com/?p=88</link>
	</item>
	<item>
		<title>How to center floating list (navigation)</title>
		<description><![CDATA[Some time ago I used to think this problem can't be correctly resolved without tables.
Imagine, you have a list of  elements (each element's width is unknown - read: variable)  that should be blocks (for example you have to add background on hover or make any other helpful things you can't handle with inline [...]]]></description>
		<link>http://www.mauzon.com/?p=87</link>
	</item>
	<item>
		<title>Weird horizontal scrolling problem in IE7?</title>
		<description><![CDATA[Nothing is wider than usual, absolutely no reason to have scroller?
And IE7 only.
You can spend hours and hours trying to remove blocks (one after another).

I found the reason (reason?! ha! a creater of this crazy behavior).

Tag &lt;br /&gt;!

Solution (using IE7 conditional comments): 

&lt;!–-[if IE 7]&gt;
&#160;&#160;br {left: -1000px;}
&lt;![endif]--&gt;


Why does it work? Ask IE7 creaters WHY. 
Don't [...]]]></description>
		<link>http://www.mauzon.com/?p=86</link>
	</item>
	<item>
		<title>Pseudoclasses :first-child and :last-child for IE6</title>
		<description><![CDATA[Regular CSS for FF, IE7, Opera, Safari:


#subnav li {background-color: green;}
#subnav li:first-child {background-color: red;}


CSS for IE 6 (using conditional comments):

&lt;!–-[if IE 6]&gt;
#subnav li {background-color: expression(this.previousSibling==null?'red':'green');}
&lt;![endif]--&gt;

Similar to :last-child 
Instead of this.previousSibling==null there should be this.nextSibling==null
 ]]></description>
		<link>http://www.mauzon.com/?p=85</link>
	</item>
	<item>
		<title>Jing - best for capture and sharing</title>
		<description><![CDATA[The concept of Jing is the always-ready program that instantly captures and shares images and video…from your computer to anywhere.

It’s something we want to give you, along with some online media hosting, to see how you use it. The project will eventually turn into something else.

Awesome! ;)

Also useful to help your parents/kids to configure anything: [...]]]></description>
		<link>http://www.mauzon.com/?p=84</link>
	</item>
	<item>
		<title>Upload Picasa photos to Flickr</title>
		<description><![CDATA[Finally!
picasa2flickr: A simple "plugin" that allows picasa users to upload their photos to flickr.
Thanks to author.
Hope he will make nice interface soon ;) ]]></description>
		<link>http://www.mauzon.com/?p=83</link>
	</item>
	<item>
		<title>Crash your IE6</title>
		<description><![CDATA[Do you want to crash your visitors IE6?
Add &lt;div id=&quot;tags&quot;&gt;anything&lt;/div&gt; to your page and suggest them to print it.

To avoid printing crash for IE6 just avoid id name tags

It seems it works (umm, crashes) to "native" IE6 and doesn't work to IE6 within MultipleIE installation. ]]></description>
		<link>http://www.mauzon.com/?p=82</link>
	</item>
	<item>
		<title>Simplest Classname Switcher</title>
		<description><![CDATA[Simplest JS function to add/remove custom classname with carrying about another classes.
just to remember.


function toggleClassName(obj,sClassName,switcher){
	if(switcher){
		if(obj.className.indexOf(sClassName)==-1)
			obj.className=obj.className + ' ' + sClassName;
	}else{
		var re = new RegExp(sClassName,'g');
		obj.className=obj.className.replace(re,'');
	}
}

sapienti sat ]]></description>
		<link>http://www.mauzon.com/?p=81</link>
	</item>
	<item>
		<title>We&#8217;re in Cannes at MipTV Content 360 Pitching Competition</title>
		<description><![CDATA[links: 
MipTV Media Market
Content 360 Pitching Competition @ MipTV

our project/concept:
Cont-Act! Content Actual. Link Different! is in BBC's category "On-demand Participation" 

Support us! :)

P.S. We won! ]]></description>
		<link>http://www.mauzon.com/?p=80</link>
	</item>
</channel>
</rss>
