<?xml version="1.0" encoding="utf-8"?>
		<feed xmlns="http://www.w3.org/2005/Atom">
		  <title type="text">SkillShare Forum - CSS Beauty - Safari CSS Layout problem</title>
		  <updated>2013-05-23T12:13:32-04:00</updated>
		  <id>http://cssbeauty.com/skillshare/</id>
		  <link rel="alternate" type="text/html" hreflang="en" href="http://cssbeauty.com/skillshare/discussion/?DiscussionID=2908&amp;Focus=15398"/>
		  <link rel="self" type="application/atom+xml" href="http://cssbeauty.com/skillshare/discussion/?DiscussionID=2908&amp;Focus=15398&amp;Feed=Atom"/>
		  <generator uri="http://getvanilla.com/" version="1.1.9">
			 Lussumo Vanilla
		  </generator>
		  <entry>
		<title>Safari CSS Layout problem</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/2908/?Focus=15398#Comment_15398" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/2908/?Focus=15398#Comment_15398</id>
		<published>2008-08-01T16:30:22-04:00</published>
		<updated>2013-05-23T12:13:32-04:00</updated>
		<author>
			<name>jay0316</name>
			<uri>http://cssbeauty.com/skillshare/account/2609/</uri>
		</author>
		<summary type="text" xml:lang="en">
			The site I'm working on seems to appear ok in Firefox and IE, but I'm having problems in Safari 3.1.1 on pc and mac.  The right &quot;navPanel&quot; div falls below the left content div.  Could ...
		</summary>
		<content type="html">
			<![CDATA[The site I'm working on seems to appear ok in Firefox and IE, but I'm having problems in Safari 3.1.1 on pc and mac.  The right "navPanel" div falls below the left content div.  Could someone have a look and give me some direction on fixing this issue?<br /><br /><a href="http://www.advancecleanup.com/test.php" target="_blank" rel="nofollow">http://www.advancecleanup.com/test.php</a><br /><br />Thanks!]]>
		</content>
	</entry>
	<entry>
		<title>Safari CSS Layout problem</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/2908/?Focus=15399#Comment_15399" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/2908/?Focus=15399#Comment_15399</id>
		<published>2008-08-01T16:43:14-04:00</published>
		<updated>2008-08-01T16:43:23-04:00</updated>
		<author>
			<name>davist11</name>
			<uri>http://cssbeauty.com/skillshare/account/1938/</uri>
		</author>
		<summary type="text" xml:lang="en">
			I think you're overthinking some things.

Ok, so #wrapper has a width of 920px. But, you are trying to stick something that is too wide:

779px (#content, width: 700px + 75px padding + 4px ...
		</summary>
		<content type="html">
			<![CDATA[I think you're overthinking some things.<br /><br />Ok, so #wrapper has a width of 920px. But, you are trying to stick something that is too wide:<br /><br />779px (#content, width: 700px + 75px padding + 4px border) + 200px (#navPanel) = 979px<br /><br />I see you are using negative margins and so forth, but it's a lot simpler than that. Try this:<br /><br />#content {<br />	float: left;<br />	margin: 15px 0 20px 0;<br />	text-align: left;		<br />	width: 621px;<br />	padding: 10px 15px 30px 60px;<br />	background: #fff;<br />	border: 2px solid #cccccc; <br />	-moz-border-radius: 8px;<br />	-webkit-border-radius: 8px;<br />}<br />#navPanel {<br />	text-align: left;<br />	padding-top:30px;<br />	float: right;<br />	width: 200px; /*Width of right column in pixels*/<br />}<br /><br />Now, that will decrease the width of your content area, so you may have to play with that.]]>
		</content>
	</entry>
	<entry>
		<title>Safari CSS Layout problem</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/2908/?Focus=15413#Comment_15413" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/2908/?Focus=15413#Comment_15413</id>
		<published>2008-08-05T10:44:38-04:00</published>
		<updated>2013-05-23T12:13:32-04:00</updated>
		<author>
			<name>jay0316</name>
			<uri>http://cssbeauty.com/skillshare/account/2609/</uri>
		</author>
		<summary type="text" xml:lang="en">
			Hey davist,

Thanks for the tips and suggestions!  That seems to have cleared up the problem.  I forgot to include the padding in the width of the wrapper.  I'm surprised firefox allowed that to ...
		</summary>
		<content type="html">
			<![CDATA[Hey davist,<br /><br />Thanks for the tips and suggestions!  That seems to have cleared up the problem.  I forgot to include the padding in the width of the wrapper.  I'm surprised firefox allowed that to slide.<br /><br />So, when I'm looking at doing a 2 column layout, is floating one left and the other right the standard way of doing that these days?  I'd like to have one way of doing it that will consistently work, but by the time I get around to needing to build another website the method changes again.  I'm looking forward to the "column" property in css 3.<br /><br />Thanks,<br />Jason]]>
		</content>
	</entry>
	<entry>
		<title>Safari CSS Layout problem</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/2908/?Focus=15414#Comment_15414" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/2908/?Focus=15414#Comment_15414</id>
		<published>2008-08-05T15:46:58-04:00</published>
		<updated>2013-05-23T12:13:32-04:00</updated>
		<author>
			<name>davist11</name>
			<uri>http://cssbeauty.com/skillshare/account/1938/</uri>
		</author>
		<summary type="text" xml:lang="en">
			I think floating 1 left and 1 right is a pretty standard way of doing it. This also helps if you are going to have a margin in between, then you don't have to worry about setting a margin on any ...
		</summary>
		<content type="html">
			<![CDATA[I think floating 1 left and 1 right is a pretty standard way of doing it. This also helps if you are going to have a margin in between, then you don't have to worry about setting a margin on any elements since the floats will be in opposite direction.]]>
		</content>
	</entry>
	<entry>
		<title>Safari CSS Layout problem</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/2908/?Focus=16900#Comment_16900" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/2908/?Focus=16900#Comment_16900</id>
		<published>2010-08-11T15:13:15-04:00</published>
		<updated>2010-08-11T15:14:00-04:00</updated>
		<author>
			<name>mikey_c_9</name>
			<uri>http://cssbeauty.com/skillshare/account/4029/</uri>
		</author>
		<summary type="text" xml:lang="en">
			Hi , I have been stumped on this problem for a few hours now and I really need external help!!

Home Page

In firefox / IE it all seems ok in my browsers.

In Safari 5.0 on a Mac it is showing ...
		</summary>
		<content type="html">
			<![CDATA[Hi , I have been stumped on this problem for a few hours now and I really need external help!!<br /><br /><a href="http://www.panthermedia.com/thehockeyshop" >Home Page</a><br /><br />In firefox / IE it all seems ok in my browsers.<br /><br />In Safari 5.0 on a Mac it is showing a horizontal scrollbar. The "computed style" when I inspected the element of the  shows width: 1846px; I don't use safari much apart from cross-browser compatability testing so not sure what "computed style" means. I assume it's the calculated style of what I am looking at in that specific browser with my computer hardware, just an assumption - please correct if I am wrong.<br /><br />I have a feeling it is some CSS somewhere causing this to happen (margin / padding somewhere maybe?) but I can't find it.<br /><br />Any help much appreciated - hopefully it's an easy one to fix.<br /><br />Thanks in advance,<br />Mikey_c_9]]>
		</content>
	</entry>
	<entry>
		<title>Safari CSS Layout problem</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/2908/?Focus=16901#Comment_16901" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/2908/?Focus=16901#Comment_16901</id>
		<published>2010-08-12T12:33:56-04:00</published>
		<updated>2013-05-23T12:13:32-04:00</updated>
		<author>
			<name>mikey_c_9</name>
			<uri>http://cssbeauty.com/skillshare/account/4029/</uri>
		</author>
		<summary type="text" xml:lang="en">
			It actually has a horizontal scroll-bar in IE too, although it doesn't scroll - just grayed out.

Anyone got any ideas?
		</summary>
		<content type="html">
			<![CDATA[It actually has a horizontal scroll-bar in IE too, although it doesn't scroll - just grayed out.<br /><br />Anyone got any ideas?]]>
		</content>
	</entry>
	
		</feed>