<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>How-To Geek Forums Topic: Website Help. Viewing in different browsers!?</title>
<link>http://www.howtogeek.com/forum/</link>
<description>How-To Geek Forums Topic: Website Help. Viewing in different browsers!?</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 09:13:50 +0000</pubDate>

<item>
<title>The Geek on "Website Help. Viewing in different browsers!?"</title>
<link>http://www.howtogeek.com/forum/topic/website-help-viewing-in-different-browsers#post-30986</link>
<pubDate>Thu, 26 Jun 2008 15:31:24 +0000</pubDate>
<dc:creator>The Geek</dc:creator>
<guid isPermaLink="false">30986@http://www.howtogeek.com/forum/</guid>
<description>&#60;p&#62;Yep. You can even have one stylesheet for good browsers, another for IE7 and another for IE6.&#60;/p&#62;
&#60;p&#62;Although realistically IE7 is not all that terrible in rendering... just some weird margin/padding issues still.
&#60;/p&#62;</description>
</item>
<item>
<title>nekizalb on "Website Help. Viewing in different browsers!?"</title>
<link>http://www.howtogeek.com/forum/topic/website-help-viewing-in-different-browsers#post-30981</link>
<pubDate>Thu, 26 Jun 2008 14:29:46 +0000</pubDate>
<dc:creator>nekizalb</dc:creator>
<guid isPermaLink="false">30981@http://www.howtogeek.com/forum/</guid>
<description>&#60;p&#62;Conditional Comments? I've never heard of those. Must research.&#60;/p&#62;
&#60;p&#62;No need to apologize. I'm glad there's an easier way than mine.&#60;/p&#62;
&#60;p&#62;So you would put the firefox css first, then the overriding IE css in a conditional comment.&#60;/p&#62;
&#60;p&#62;&#38;lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;Firefox.css&#34; /&#38;gt;&#60;br /&#62;
&#38;lt;!--[if IE]&#38;gt;&#60;br /&#62;
&#38;lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;whatever-styles-need-to-be-overridden-to-make-IE-conform-to-the-rules-of-normality.css&#34; /&#38;gt;&#60;br /&#62;
&#38;lt;![endif]--&#38;gt;&#60;/p&#62;
&#60;p&#62;Is that about right?
&#60;/p&#62;</description>
</item>
<item>
<title>The Geek on "Website Help. Viewing in different browsers!?"</title>
<link>http://www.howtogeek.com/forum/topic/website-help-viewing-in-different-browsers#post-30589</link>
<pubDate>Tue, 24 Jun 2008 07:11:29 +0000</pubDate>
<dc:creator>The Geek</dc:creator>
<guid isPermaLink="false">30589@http://www.howtogeek.com/forum/</guid>
<description>&#60;p&#62;Actually the proper way to do this is to use conditional comments in the page... for instance to specify an alternate stylesheet for IE6 you would use this conditional comment saying only process if less than IE 7:&#60;/p&#62;
&#60;p&#62;&#38;lt;!--[if lt IE 7]&#38;gt;&#60;br /&#62;
         &#38;lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;/ie-6-sucks.css&#34; /&#38;gt;&#60;br /&#62;
&#38;lt;![endif]--&#38;gt;&#60;/p&#62;
&#60;p&#62;Sorry to hijack your answer, nekizalb =)
&#60;/p&#62;</description>
</item>
<item>
<title>nekizalb on "Website Help. Viewing in different browsers!?"</title>
<link>http://www.howtogeek.com/forum/topic/website-help-viewing-in-different-browsers#post-30586</link>
<pubDate>Tue, 24 Jun 2008 06:56:45 +0000</pubDate>
<dc:creator>nekizalb</dc:creator>
<guid isPermaLink="false">30586@http://www.howtogeek.com/forum/</guid>
<description>&#60;p&#62;This script should help you out.&#60;/p&#62;
&#60;p&#62;&#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;var browser=navigator.appName;&#60;/p&#62;
&#60;p&#62;if (browser == &#34;Microsoft Internet Explorer&#34;) {&#60;br /&#62;
document.write(&#34;&#38;lt;link rel=/&#34;stylesheet/&#34; type=/&#34;text//css/&#34; href=/&#34;#####.css/&#34; //&#38;gt;&#34;);&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;else {&#60;br /&#62;
document.write(&#34;&#38;lt;link rel=/&#34;stylesheet/&#34; type=/&#34;text//css/&#34; href=/&#34;$$$$$.css/&#34; //&#38;gt;&#34;);&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;Replace the ##### with the source of your Internet Explorer CSS, and the $$$$$ with your other CSS. Then place this script within the &#38;lt;head&#38;gt;&#38;lt;/head&#38;gt; tags. If you put the CSS fiels in a subdirectory, then you need to escape every slash you use. For example, if you store them in a folder called CSS, you would normally write href=&#34;CSS/source.css&#34;   .You need to escape the slash (and the quotes, but i already did that for you) by putting another slash before it like this, href=/&#34;CSS//source.css/&#34; I know it looks wierd, but that's a javascript for you :P. Let me know if it works!
&#60;/p&#62;</description>
</item>
<item>
<title>Barlow on "Website Help. Viewing in different browsers!?"</title>
<link>http://www.howtogeek.com/forum/topic/website-help-viewing-in-different-browsers#post-29682</link>
<pubDate>Thu, 19 Jun 2008 14:06:18 +0000</pubDate>
<dc:creator>Barlow</dc:creator>
<guid isPermaLink="false">29682@http://www.howtogeek.com/forum/</guid>
<description>&#60;p&#62;Hi guys.&#60;/p&#62;
&#60;p&#62;I'm new to web building and am currently designing a website using XHTML and CSS. I was just wondering how I can get the site to look the same in Firefox and Internet Explorer as at the minute it looks slightly different when I view it in IE as I have been designing it using Firefox. Do I need to create a separate Style Sheet? If so, what is the code to enter to define which Stylesheet to use with each browser. I hope that makes sense.&#60;/p&#62;
&#60;p&#62;If someone could explain this to me in pretty simple terms, as I said, i'm a newbie!&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
