<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1025859" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1025859</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/positionfixed-hack#comment-1156466</link>
    <description> &lt;p&gt;&lt;code&gt;Well you&amp;#039;d actually want to add a DOCTYPE to knock IE out of quirks mode and into &amp;quot;standards&amp;quot; mode&lt;/code&gt;&#039; &lt;/p&gt;
&lt;p&gt;Oops sorry... my bad.  You&#039;re right!&lt;br /&gt;
I think I&#039;m doing more harm than good here.  &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/eyeroll.png&quot; title=&quot;Roll eyes&quot; alt=&quot;Roll eyes&quot; class=&quot;smiley-content&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Dragon of Ice, I know you probably don&#039;t want to hear this but I think you&#039;re going to be much more satisfied if you put up some test pages and &quot;play&quot; with the coding yourself.  Find a page that uses a fixed division AND that works on your version of IE.  copy the code and play with it.  Figure out what they&#039;re doing to make it stay stuck.&lt;/p&gt;
&lt;p&gt;I think it&#039;s important to have people (like the ones at this forum) to turn to when you get stuck with a problem, but you&#039;ve got to be willing to do the experiments yourself. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Aug 2004 14:10:36 +0000</pubDate>
 <dc:creator>KarenArt</dc:creator>
 <guid isPermaLink="false">comment 1156466 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/positionfixed-hack#comment-1156464</link>
    <description> &lt;p&gt;Is this what you&#039;re looking for?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.meganjack.com/uw_courses/css/lear1.1.html&quot; class=&quot;bb-url&quot;&gt;http://www.meganjack.com/uw_courses/css/lear1.1.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I don&#039;t entirely understand it myself but it works!&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Aug 2004 13:19:34 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1156464 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/positionfixed-hack#comment-1156461</link>
    <description> &lt;p&gt;Well you&#039;d actually want to add a DOCTYPE to knock IE &lt;strong&gt;out&lt;/strong&gt; of quirks mode and into &quot;standards&quot; mode, I&#039;m not sure which versions of IE this affects, certainly 6 but I&#039;m not sure about 5/5.5 (and naturally IE still doesn&#039;t support standards - you know what I mean!)&lt;/p&gt;
&lt;p&gt;Karen is right, IE is a pain. But it&#039;s always helpful to specify what you want and give us code straight away! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;br /&gt;
I&#039;m still not sure of what you&#039;re trying to do, it seems you&#039;re trying to absolutely position an element or is it the background for the element you&#039;re trying to position?&lt;/p&gt;
&lt;p&gt;Specify! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Aug 2004 12:46:04 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1156461 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/positionfixed-hack#comment-1156456</link>
    <description> &lt;p&gt;Ok... I have to do a clean install of IE to get it working again on my computer, so I can&#039;t check this for you.&lt;br /&gt;
Try this...&lt;/p&gt;
&lt;p&gt;In the head section of your html document add&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;!--[if IE 6]&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; /*&amp;lt;![CDATA[*/ &lt;br /&gt;html {overflow-x:auto; overflow-y:hidden;}&lt;br /&gt;&amp;nbsp;&amp;nbsp; /*]]&amp;gt;*/&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;![endif]--&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039; &lt;/p&gt;
&lt;p&gt;In your css file in the div.sidebar part&lt;br /&gt;
delete float: right;&lt;br /&gt;
and add&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;display: block; &lt;br /&gt;top: 230px; &lt;br /&gt;right: 10px;&lt;br /&gt;position: fixed;&lt;/code&gt;&lt;/div&gt;&#039; &lt;/p&gt;
&lt;p&gt;Add this to your css page&lt;br /&gt;
&lt;code&gt;* html div.sidebar {position:absolute;}&lt;/code&gt;&#039; &lt;/p&gt;
&lt;p&gt;See if that does you any good.&lt;br /&gt;
I think you may also need to set your doctype to kick IE into quirks mode, but I&#039;m not positive about that.&lt;br /&gt;
If the above doesn&#039;t work try adding&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.1//EN&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; xml:lang=&amp;quot;en&amp;quot; &amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;application/xhtml+xml; charset=UTF-8&amp;quot; /&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;br /&gt;
to the top of your html file.&lt;br /&gt;
It&#039;s a good idea to have a doctype on your page anyway.&lt;/p&gt;
&lt;p&gt;*Edited to fix code (I hope)&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Aug 2004 03:21:41 +0000</pubDate>
 <dc:creator>KarenArt</dc:creator>
 <guid isPermaLink="false">comment 1156456 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/positionfixed-hack#comment-1156455</link>
    <description> &lt;p&gt;I&#039;m trying to fix the sidebar (navigation) div, and i want it positioned exactly where it is.  I beleive the math works out to about 230px.&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Aug 2004 02:45:35 +0000</pubDate>
 <dc:creator>Dragon of Ice</dc:creator>
 <guid isPermaLink="false">comment 1156455 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/positionfixed-hack#comment-1156454</link>
    <description> &lt;p&gt;Which div are you trying to fix and where do you want it positioned?&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Aug 2004 02:15:53 +0000</pubDate>
 <dc:creator>KarenArt</dc:creator>
 <guid isPermaLink="false">comment 1156454 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/positionfixed-hack#comment-1156453</link>
    <description> &lt;p&gt;The site can be found at &lt;a href=&quot;http://www.angeltowns2.com/members/bassdesigns/mike/&quot; class=&quot;bb-url&quot;&gt;http://www.angeltowns2.com/members/bassdesigns/mike/&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Aug 2004 02:08:20 +0000</pubDate>
 <dc:creator>Dragon of Ice</dc:creator>
 <guid isPermaLink="false">comment 1156453 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/positionfixed-hack#comment-1156451</link>
    <description> &lt;p&gt;I just thought of something... what version of IE are you trying to hack for?&lt;br /&gt;
This hack works for IE 6.  I don&#039;t think it does a thing for 5.5.&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Aug 2004 00:45:35 +0000</pubDate>
 <dc:creator>KarenArt</dc:creator>
 <guid isPermaLink="false">comment 1156451 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/positionfixed-hack#comment-1156450</link>
    <description> &lt;p&gt;What is it you want to do with your div?&lt;br /&gt;
Do you have a page or code to look at so we can help?&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Aug 2004 00:27:46 +0000</pubDate>
 <dc:creator>KarenArt</dc:creator>
 <guid isPermaLink="false">comment 1156450 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/positionfixed-hack#comment-1156449</link>
    <description> &lt;p&gt;I want a div to be fixed, not a background&lt;/p&gt;
 </description>
     <pubDate>Tue, 10 Aug 2004 23:47:27 +0000</pubDate>
 <dc:creator>Dragon of Ice</dc:creator>
 <guid isPermaLink="false">comment 1156449 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
