<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1034298" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1034298</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/indenting-nested-menu-using-css#comment-1199226</link>
    <description> &lt;p&gt;Menu is working fine thanks now other than an unsightly left-margin on IE (Firefox is okay).&lt;/p&gt;
&lt;p&gt;The only left padding I can see is 25px on #navigation ul li { but even when I remove this it&#039;s the same &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Links removed as problem sorted.&lt;br /&gt;
Hack *  {margin: 0; padding: 0;} added&lt;/p&gt;
 </description>
     <pubDate>Mon, 08 May 2006 22:53:10 +0000</pubDate>
 <dc:creator>Samuel Russell</dc:creator>
 <guid isPermaLink="false">comment 1199226 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/indenting-nested-menu-using-css#comment-1199221</link>
    <description> &lt;p&gt;Thanks for this.&lt;/p&gt;
&lt;p&gt;Can someone please clarify the difference in the following list styles?&lt;/p&gt;
&lt;p&gt;#navigation ul li {&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#navigation ul li span {&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#navigation ul li ul {&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#navigation ul li ul li {&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#navigation ul li ul li.selected {&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#navigation ul li ul li ul li {&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#navigation ul li ul li a {&lt;br /&gt;
}&lt;/p&gt;
 </description>
     <pubDate>Mon, 08 May 2006 21:59:50 +0000</pubDate>
 <dc:creator>Samuel Russell</dc:creator>
 <guid isPermaLink="false">comment 1199221 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/indenting-nested-menu-using-css#comment-1199169</link>
    <description> &lt;p&gt;Just made a quick test page, here&#039;s the code that I used:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot;&lt;br /&gt;&amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.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; lang= &amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;Test&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=ISO-8859-1&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;&lt;br /&gt;ul {&lt;br /&gt;position:relative;&lt;br /&gt;margin:0;&lt;br /&gt;padding:0;&lt;br /&gt;list-style:none;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;li ul {&lt;br /&gt;	padding-left:5em;&lt;br /&gt;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;ul&amp;gt;&lt;br /&gt;	&amp;lt;li&amp;gt;Bullet&amp;lt;/li&amp;gt;&lt;br /&gt;	&amp;lt;li&amp;gt;Bullet&amp;lt;/li&amp;gt;&lt;br /&gt;	&amp;lt;li&amp;gt;Bullet&amp;lt;/li&amp;gt;&lt;br /&gt;	&amp;lt;li&amp;gt;Bullet&amp;lt;/li&amp;gt;&lt;br /&gt;	&amp;lt;li&amp;gt;&lt;br /&gt;		&amp;lt;ul&amp;gt;&lt;br /&gt;			&amp;lt;li&amp;gt;Bullet&amp;lt;/li&amp;gt;&lt;br /&gt;			&amp;lt;li&amp;gt;Bullet&amp;lt;/li&amp;gt;&lt;br /&gt;			&amp;lt;li&amp;gt;Bullet&amp;lt;/li&amp;gt;&lt;br /&gt;			&amp;lt;li&amp;gt;Bullet&amp;lt;/li&amp;gt;&lt;br /&gt;			&amp;lt;li&amp;gt;&lt;br /&gt;				&amp;lt;ul&amp;gt;&lt;br /&gt;					&amp;lt;li&amp;gt;Bullet&amp;lt;/li&amp;gt;&lt;br /&gt;					&amp;lt;li&amp;gt;Bullet&amp;lt;/li&amp;gt;&lt;br /&gt;					&amp;lt;li&amp;gt;Bullet&amp;lt;/li&amp;gt;&lt;br /&gt;					&amp;lt;li&amp;gt;Bullet&amp;lt;/li&amp;gt;&lt;br /&gt;				&amp;lt;/ul&amp;gt;&lt;br /&gt;			&amp;lt;/li&amp;gt;&lt;br /&gt;		&amp;lt;/ul&amp;gt;&lt;br /&gt;	&amp;lt;/li&amp;gt;&lt;br /&gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Mon, 08 May 2006 03:42:10 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1199169 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/indenting-nested-menu-using-css#comment-1199151</link>
    <description> &lt;p&gt;Bullet tip worked thanks but no luck with indents &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;br /&gt;
I&#039;m trying to do smething like this but it&#039;s proving a *%@*$  &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/confused.png&quot; title=&quot;Confused&quot; alt=&quot;Confused&quot; class=&quot;smiley-content&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.treehousewebbo.f2s.com/Image1.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 07 May 2006 20:57:30 +0000</pubDate>
 <dc:creator>Samuel Russell</dc:creator>
 <guid isPermaLink="false">comment 1199151 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/indenting-nested-menu-using-css#comment-1199150</link>
    <description> &lt;p&gt;You can try this:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;ul {&lt;br /&gt;position:relative;&lt;br /&gt;margin:0;&lt;br /&gt;padding:0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;ul ul {&lt;br /&gt;position:relative;&lt;br /&gt;margin-left:1em;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;There is a little inconsistancy with browsers. Sometimes, the space around a ul is padding while other browsers have it as a margin. Setting the position as relative is a little hack/workaround for Opera 6.&lt;/p&gt;
 </description>
     <pubDate>Sun, 07 May 2006 20:02:13 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1199150 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/indenting-nested-menu-using-css#comment-1199145</link>
    <description> &lt;p&gt;To remove the bullets use&lt;br /&gt;
ul {&lt;br /&gt;
list-style-type:none&lt;br /&gt;
}&lt;/p&gt;
 </description>
     <pubDate>Sun, 07 May 2006 17:39:51 +0000</pubDate>
 <dc:creator>teammatt3</dc:creator>
 <guid isPermaLink="false">comment 1199145 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/indenting-nested-menu-using-css#comment-1199143</link>
    <description> &lt;p&gt;for the indent maybe the padding-left or margin-left commands.&lt;/p&gt;
 </description>
     <pubDate>Sun, 07 May 2006 17:31:02 +0000</pubDate>
 <dc:creator>DaveyBoy</dc:creator>
 <guid isPermaLink="false">comment 1199143 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
