<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Menu bar invisible in Internet Explorer</title>
    <link>http://forums.shopify.com/categories/2/posts/30708</link>
    <language>en-us</language>
    <description>Feed for discussion topic Menu bar invisible in Internet Explorer</description>
    <item>
      <title>Menu bar invisible in Internet Explorer</title>
      <author>Jontmusic</author>
      <pubDate>Tue, 03 Nov 2009 17:00:09 +0000</pubDate>
      <link>http://forums.shopify.com/categories/2/posts/30708</link>
      <guid>http://forums.shopify.com/categories/2/posts/30708</guid>
      <description>&lt;p&gt;Hi all&lt;/p&gt;
&lt;p&gt;I'm using&amp;nbsp;Underground Media's free &lt;a href="http://www.shopifyskins.co.uk/"&gt;Minimal&lt;/a&gt; store template on our shop at &lt;a href="http://jontmusic.myshopify.com/"&gt;http://jontmusic.myshopify.com/&lt;/a&gt; and are having a design problem:&lt;/p&gt;
&lt;p&gt;Whilst the black navigation bar dispays correctly in Safari and Firefox, for some reason it's invisible in all versions of IE, meaning the white menu text is against the white background.&lt;/p&gt;
&lt;p&gt;If someone could advise as to what the problem might be I'd be very grateful!&lt;/p&gt;
&lt;p&gt;Many thanks,&lt;/p&gt;
&lt;p&gt;Lee&lt;/p&gt;</description>
    </item>
    <item>
      <title>Jamie commented</title>
      <author>Jamie</author>
      <pubDate>Tue, 03 Nov 2009 17:06:49 +0000</pubDate>
      <link>http://forums.shopify.com/categories/2/posts/30708#comment-30709</link>
      <guid>http://forums.shopify.com/categories/2/posts/30708#comment-30709</guid>
      <description>&lt;p&gt;My guess is the single error in your page is making ie barf:&lt;/p&gt;
&lt;p&gt;
&lt;pre&gt;&amp;lt;div id="header" class="clearfix"&amp;gt;
	&amp;lt;div id="logo"&amp;gt;
			&amp;lt;a href=""&amp;gt;&amp;lt;img src="&lt;a href="http://cdn.shopify.com/s/files/1/0037/4762/assets/logo.png?1256662854"&gt;http://cdn.shopify.com/s/files/1/0037/4762/assets/logo.png?1256662854&lt;/a&gt;" alt=""&amp;lt;/a&amp;gt;
		&amp;lt;/div&amp;gt;
&lt;/pre&gt;
Your image tag for your logo is not closed.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Jontmusic commented</title>
      <author>Jontmusic</author>
      <pubDate>Tue, 03 Nov 2009 18:26:11 +0000</pubDate>
      <link>http://forums.shopify.com/categories/2/posts/30708#comment-30711</link>
      <guid>http://forums.shopify.com/categories/2/posts/30708#comment-30711</guid>
      <description>&lt;p&gt;Thanks for your suggestion, but having amended the code to&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;&amp;lt;div id="header" class="clearfix"&amp;gt;
	&amp;lt;div id="logo"&amp;gt;
			&amp;lt;a href=""&amp;gt;&amp;lt;img src="{{ 'logo.png' | asset_url }}" alt="logo" /&amp;gt;&amp;lt;/a&amp;gt;
		&amp;lt;/div&amp;gt;&lt;/pre&gt;
&lt;p&gt;...this doesn't seem to have fixed the problem...any other thoughts gratefully recieved!&lt;/p&gt;
&lt;p&gt;Lee&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Caroline Schnapp commented</title>
      <author>Caroline Schnapp</author>
      <pubDate>Tue, 03 Nov 2009 20:09:23 +0000</pubDate>
      <link>http://forums.shopify.com/categories/2/posts/30708#comment-30713</link>
      <guid>http://forums.shopify.com/categories/2/posts/30708#comment-30713</guid>
      <description>&lt;p&gt;Seems like IE requires a bit more specificity here. Some info set for #main overrides with displaying a white background.&lt;/p&gt;
&lt;p&gt;Change this:&lt;/p&gt;
&lt;pre&gt;#main {&lt;br /&gt;	background: #fff;	&lt;br /&gt;	clear:both;&lt;br /&gt;	width: 960px;&lt;br /&gt;	}&lt;br /&gt;&lt;/pre&gt;
&lt;p&gt;To this:&lt;/p&gt;
&lt;pre&gt;#main {&lt;br /&gt;	background-color: #fff;	&lt;br /&gt;	clear:both;&lt;br /&gt;	width: 960px;&lt;br /&gt;	}&lt;br /&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Caroline Schnapp commented</title>
      <author>Caroline Schnapp</author>
      <pubDate>Tue, 03 Nov 2009 20:11:30 +0000</pubDate>
      <link>http://forums.shopify.com/categories/2/posts/30708#comment-30714</link>
      <guid>http://forums.shopify.com/categories/2/posts/30708#comment-30714</guid>
      <description>&lt;p&gt;Also, change this:&lt;/p&gt;
&lt;pre&gt;#navigate {&lt;br /&gt;	padding: 5px;&lt;br /&gt;	background: url(navbg.jpg);&lt;br /&gt;        height: 42px;&lt;br /&gt;	background-repeat: repeat-x;&lt;br /&gt;        border-bottom: 1px solid #eee;&lt;br /&gt;	text-align: left;&lt;br /&gt;	}&lt;br /&gt;&lt;/pre&gt;
&lt;p&gt;To this:&lt;/p&gt;
&lt;pre&gt;div#navigate {&lt;br /&gt;	padding: 5px;&lt;br /&gt;	background: black url(navbg.jpg) repeat-x;&lt;br /&gt;        height: 42px;&lt;br /&gt;        border-bottom: 1px solid #eee;&lt;br /&gt;	text-align: left;&lt;br /&gt;	}&lt;br /&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Jontmusic commented</title>
      <author>Jontmusic</author>
      <pubDate>Tue, 03 Nov 2009 20:41:13 +0000</pubDate>
      <link>http://forums.shopify.com/categories/2/posts/30708#comment-30715</link>
      <guid>http://forums.shopify.com/categories/2/posts/30708#comment-30715</guid>
      <description>&lt;p&gt;Thanks Caroline, that second change fixed the problem!&lt;/p&gt;
&lt;p&gt;And thanks Jamie for trying, you guys are the best :)&lt;/p&gt;
&lt;p&gt;Lee&lt;/p&gt;</description>
    </item>
    <item>
      <title>Caroline Schnapp commented</title>
      <author>Caroline Schnapp</author>
      <pubDate>Tue, 03 Nov 2009 20:50:26 +0000</pubDate>
      <link>http://forums.shopify.com/categories/2/posts/30708#comment-30716</link>
      <guid>http://forums.shopify.com/categories/2/posts/30708#comment-30716</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;And thanks Jamie for trying, you guys are the best :)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Yep, and we are not getting paid a cent by Shopify (just FYI). So thanks for the appreciation, Lee.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Jamie commented</title>
      <author>Jamie</author>
      <pubDate>Tue, 03 Nov 2009 21:22:08 +0000</pubDate>
      <link>http://forums.shopify.com/categories/2/posts/30708#comment-30717</link>
      <guid>http://forums.shopify.com/categories/2/posts/30708#comment-30717</guid>
      <description>&lt;p&gt;Good! I see Caroline Gotcha. Glad you got it working!&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
