<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1032660" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1032660</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/css-menu-width-problem#comment-1191156</link>
    <description> &lt;p&gt;No worries - glad to help. &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;/p&gt;
&lt;p&gt;Take a look at &lt;a href=&quot;http://www.csszengarden.com&quot; class=&quot;bb-url&quot;&gt;http://www.csszengarden.com&lt;/a&gt; to see what can be done with CSS.&lt;/p&gt;
&lt;p&gt;Nice looking site though. &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;/p&gt;
 </description>
     <pubDate>Sat, 21 Jan 2006 09:07:12 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1191156 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/css-menu-width-problem#comment-1191137</link>
    <description> &lt;p&gt;Mate thanks very much for that, i owe you a pint like.&lt;/p&gt;
&lt;p&gt;Aye i&#039;m one of those, make stuff loook pretty designers, i know zip about anything other than HTML. You have inspired me to try anyway. nice one chap &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>Sat, 21 Jan 2006 01:44:04 +0000</pubDate>
 <dc:creator>DaveyBoy</dc:creator>
 <guid isPermaLink="false">comment 1191137 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/css-menu-width-problem#comment-1191126</link>
    <description> &lt;p&gt;This is the ie broken box model in full effect *sigh*&lt;/p&gt;
&lt;p&gt;Anyway, I&#039;ve fixed the css and that&#039;s what you&#039;re interested in right? Here it is:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;#coolmenu a{&lt;br /&gt;font: bold 10px Verdana;&lt;br /&gt;/*padding: 4px;*/&lt;br /&gt;/*padding-left: 4px;*/&lt;br /&gt;padding: 4px;&lt;br /&gt;display: block;&lt;br /&gt;/*width: 100%;*/&lt;br /&gt;height: 12px;&lt;br /&gt;color: #826344;&lt;br /&gt;text-decoration: none;&lt;br /&gt;border-bottom: 1px solid #95795A;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;br /&gt;
I&#039;ve left the bits I changed commented out. You see ie seems to be expanding the a tag to 100% &lt;strong&gt;then&lt;/strong&gt; adding the padding! As the ie box model is broken, have had to remove the width entirely. This seems to have done the trick!&lt;/p&gt;
&lt;p&gt;I also noticed there is a lot of repetition of the &quot;font&quot; property, it appears in almost every div! You can make one &quot;body&quot; declaration, and put one font declaration in there and that will change the entire document. Then if you want a seperate header font, you can override it later. For example:&lt;/p&gt;
&lt;p&gt;Instead of:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;.links3 {&lt;br /&gt;	font-family: Verdana, Arial, Helvetica, sans-serif;&lt;br /&gt;	font-size: 11px;&lt;br /&gt;	color: #FFFFFF;&lt;br /&gt;	font-weight: bold;&lt;br /&gt;	text-decoration: none;&lt;br /&gt;}&lt;br /&gt;.links2 {&lt;br /&gt;	font-family: Verdana, Arial, Helvetica, sans-serif;&lt;br /&gt;	font-size: 12px;&lt;br /&gt;	color: #663F27;&lt;br /&gt;	font-weight: bold;&lt;br /&gt;	text-decoration: none;&lt;br /&gt;}&lt;br /&gt;.menulinks {&lt;br /&gt;	font-family: Verdana, Arial, Tahoma;&lt;br /&gt;	font-size: 10px;&lt;br /&gt;	font-weight: bold;&lt;br /&gt;	color: #826344;&lt;br /&gt;	text-decoration: none;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Use&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;body {&lt;br /&gt; font-family: Verdana, Arial, Helvetica, sans-serif;&lt;br /&gt; font-size: 12px;&lt;br /&gt;}&lt;br /&gt;.links3 {&lt;br /&gt;	font-size: 11px;&lt;br /&gt;	color: #FFFFFF;&lt;br /&gt;	font-weight: bold;&lt;br /&gt;	text-decoration: none;&lt;br /&gt;}&lt;br /&gt;.links2 {&lt;br /&gt;	color: #663F27;&lt;br /&gt;	font-weight: bold;&lt;br /&gt;	text-decoration: none;&lt;br /&gt;}&lt;br /&gt;.menulinks {&lt;br /&gt;	font-size: 10px;&lt;br /&gt;	font-weight: bold;&lt;br /&gt;	color: #826344;&lt;br /&gt;	text-decoration: none;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;There are other things you can do, like setting text-decoration and bold to all links, however I think I&#039;ve lectured you enough for today.&lt;br /&gt;
Hope this helps. &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;/p&gt;
 </description>
     <pubDate>Fri, 20 Jan 2006 23:07:28 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1191126 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/css-menu-width-problem#comment-1191050</link>
    <description> &lt;p&gt;Yeah the width should be the same as the buttons below it, but on IE6 the width is too wide plus its out of position a bit on the left.&lt;/p&gt;
 </description>
     <pubDate>Fri, 20 Jan 2006 10:39:22 +0000</pubDate>
 <dc:creator>DaveyBoy</dc:creator>
 <guid isPermaLink="false">comment 1191050 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/css-menu-width-problem#comment-1191048</link>
    <description> &lt;p&gt;Sorry to ask you for more details, but I&#039;ve looked at this in ie5, ie5.5, ie6, Opera 9 preview and Firefox 1.5...&lt;/p&gt;
&lt;p&gt;It looks exactly the same on all of them - which is great! But leads me to ask, where&#039;s the problem? &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;/p&gt;
&lt;p&gt;What version of ie are you viewing this with? And can you provide a screenshot of exactly what&#039;s wrong?&lt;/p&gt;
&lt;p&gt;You could also try clearing your cache and then viewing it. Maybe ie is using an old style sheet - worth a try.&lt;/p&gt;
 </description>
     <pubDate>Fri, 20 Jan 2006 09:25:25 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1191048 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
