<?xml version="1.0" encoding="utf-8"?>
		<feed xmlns="http://www.w3.org/2005/Atom">
		  <title type="text">SkillShare Forum - CSS Beauty - IE6 / 7 Simple Problem with centering</title>
		  <updated>2013-05-26T01:33:09-04:00</updated>
		  <id>http://cssbeauty.com/skillshare/</id>
		  <link rel="alternate" type="text/html" hreflang="en" href="http://cssbeauty.com/skillshare/discussion/?DiscussionID=1858&amp;Focus=10682"/>
		  <link rel="self" type="application/atom+xml" href="http://cssbeauty.com/skillshare/discussion/?DiscussionID=1858&amp;Focus=10682&amp;Feed=Atom"/>
		  <generator uri="http://getvanilla.com/" version="1.1.9">
			 Lussumo Vanilla
		  </generator>
		  <entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=10673#Comment_10673" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=10673#Comment_10673</id>
		<published>2007-03-27T03:18:35-04:00</published>
		<updated>2007-03-27T07:16:58-04:00</updated>
		<author>
			<name>stickygoblin</name>
			<uri>http://cssbeauty.com/skillshare/account/2318/</uri>
		</author>
		<summary type="text" xml:lang="en">
			Hi all,

got another problem with ie - why dosen';t someone just burn it down its shocking how annoying it is.

Ok site is fine in FF everything works great - got the green tick and i'm happy ...
		</summary>
		<content type="html">
			<![CDATA[Hi all,<br /><br />got another problem with ie - why dosen';t someone just burn it down its shocking how annoying it is.<br /><br />Ok site is fine in FF everything works great - got the green tick and i'm happy hand the thing over for testing and boom all over the shop in IE 6 and 7.<br /><br />Main issue - centering the 865px page IN THE CENTER!! why it dosn't understand that i don't know.<br /><br />Secondary - Footer set to stay at the bottom of the page in FF and it just goes where it likes - even half way up the page - refresh and it goes 'oh yeah' i'm sposed to be at the bottom!<br /><br />anyway check it out and tell me what i have done wrong <a href='www.acurainvestments.com'>www.acurainvestments.com</a>]]>
		</content>
	</entry>
	<entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=10676#Comment_10676" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=10676#Comment_10676</id>
		<published>2007-03-27T03:59:17-04:00</published>
		<updated>2007-03-27T04:02:43-04:00</updated>
		<author>
			<name>VinojZ</name>
			<uri>http://cssbeauty.com/skillshare/account/2373/</uri>
		</author>
		<summary type="text" xml:lang="en">
			In reference to this: &quot;Main issue - centering the 865px page IN THE CENTER!! why it dosn't understand that i don't know.&quot;

Believe it or not, I did this thing on my site that worked ...
		</summary>
		<content type="html">
			<![CDATA[In reference to this: "Main issue - centering the 865px page IN THE CENTER!! why it dosn't understand that i don't know."<br /><br />Believe it or not, I did this thing on my site that worked dandy. It ain't pretty, but it worked. Basically, I put &lt;center&gt;&lt;/center&gt; before and after the div in the (X)HTML, and in the CSS, made sure that it had:<br /><br />#example {<br />position: relative;<br />text-align: left;<br />width: 865px;<br />}<br /><br />That way, all the text in your page isn't centered also. I'm sure there's a better CSS way to do it, but just thought I'd offer an easy way out in case you're crunched for time and need IE 5.x/6 to render correctly.]]>
		</content>
	</entry>
	<entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=10678#Comment_10678" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=10678#Comment_10678</id>
		<published>2007-03-27T04:05:29-04:00</published>
		<updated>2007-03-27T06:43:48-04:00</updated>
		<author>
			<name>stickygoblin</name>
			<uri>http://cssbeauty.com/skillshare/account/2318/</uri>
		</author>
		<summary type="text" xml:lang="en">
			Thanks for that will give it a go this afternoon - when aren't we crushed for time?

Unfortunatly as it is the whole page its done some really wierd stuff to it so - i think that works fine if you ...
		</summary>
		<content type="html">
			<![CDATA[Thanks for that will give it a go this afternoon - when aren't we crushed for time?<br /><br />Unfortunatly as it is the whole page its done some really wierd stuff to it so - i think that works fine if you aren't using a css background image as it seems to center that aswell.]]>
		</content>
	</entry>
	<entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=10682#Comment_10682" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=10682#Comment_10682</id>
		<published>2007-03-27T06:14:06-04:00</published>
		<updated>2013-05-26T01:33:09-04:00</updated>
		<author>
			<name>strugglefish</name>
			<uri>http://cssbeauty.com/skillshare/account/1143/</uri>
		</author>
		<summary type="text" xml:lang="en">
			for centering using this should do the trick:

#pageWrap
{
display: block;
width: 865px;
margin: 0px auto;
}

You might discover a  1px jog using odd numbered pixels, try using even numbers ...
		</summary>
		<content type="html">
			<![CDATA[for centering using this should do the trick:<br /><br />#pageWrap<br />{<br />display: block;<br />width: 865px;<br />margin: 0px auto;<br />}<br /><br />You might discover a  1px jog using odd numbered pixels, try using even numbers such as 866px or 864px. funny what one pixel can do to a layout.]]>
		</content>
	</entry>
	<entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=10683#Comment_10683" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=10683#Comment_10683</id>
		<published>2007-03-27T06:53:10-04:00</published>
		<updated>2013-05-26T01:33:09-04:00</updated>
		<author>
			<name>WardLarson</name>
			<uri>http://cssbeauty.com/skillshare/account/1386/</uri>
		</author>
		<summary type="text" xml:lang="en">
			set margins left and right to 'auto'

and you're done.
		</summary>
		<content type="html">
			<![CDATA[set margins left and right to 'auto'<br /><br />and you're done.]]>
		</content>
	</entry>
	<entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=10684#Comment_10684" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=10684#Comment_10684</id>
		<published>2007-03-27T07:16:07-04:00</published>
		<updated>2007-03-27T07:16:22-04:00</updated>
		<author>
			<name>stickygoblin</name>
			<uri>http://cssbeauty.com/skillshare/account/2318/</uri>
		</author>
		<summary type="text" xml:lang="en">
			I got it with the page positioning!!! 

i hadn't set 	text-align:center; in the '#body' - thats all it needed.

Just got to get control of the footers in IE and THEN i'm done!

Any ideas??
		</summary>
		<content type="html">
			<![CDATA[I got it with the page positioning!!! <br /><br />i hadn't set 	text-align:center; in the '#body' - thats all it needed.<br /><br />Just got to get control of the footers in IE and THEN i'm done!<br /><br />Any ideas??]]>
		</content>
	</entry>
	<entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=10686#Comment_10686" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=10686#Comment_10686</id>
		<published>2007-03-27T07:39:48-04:00</published>
		<updated>2013-05-26T01:33:09-04:00</updated>
		<author>
			<name>stickygoblin</name>
			<uri>http://cssbeauty.com/skillshare/account/2318/</uri>
		</author>
		<summary type="text" xml:lang="en">
			Wrestled the footer to the ground!  - 

in the header just put:





at it works!

yay 

thanks for the help guys.
		</summary>
		<content type="html">
			<![CDATA[Wrestled the footer to the ground!  - <br /><br />in the header just put:<br /><br />&lt;!--[if IE 6]><br />	&lt;style type="text/css"><br />		#footer{position:relative;}<br />	&lt;/style><br />&lt;![endif]--><br /><br />&lt;!--[if IE 7]><br />	&lt;style type="text/css"><br />		#footer{position:relative;}<br />	&lt;/style><br />&lt;![endif]--><br /><br />at it works!<br /><br />yay <br /><br />thanks for the help guys.]]>
		</content>
	</entry>
	<entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=10700#Comment_10700" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=10700#Comment_10700</id>
		<published>2007-03-28T01:31:10-04:00</published>
		<updated>2013-05-26T01:33:09-04:00</updated>
		<author>
			<name>VinojZ</name>
			<uri>http://cssbeauty.com/skillshare/account/2373/</uri>
		</author>
		<summary type="text" xml:lang="en">
			Congrats! :)
		</summary>
		<content type="html">
			<![CDATA[Congrats! :)]]>
		</content>
	</entry>
	<entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=10701#Comment_10701" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=10701#Comment_10701</id>
		<published>2007-03-28T01:48:03-04:00</published>
		<updated>2013-05-26T01:33:09-04:00</updated>
		<author>
			<name>stickygoblin</name>
			<uri>http://cssbeauty.com/skillshare/account/2318/</uri>
		</author>
		<summary type="text" xml:lang="en">
			Last thing - i promise! just trying to get the footer to site right in ie still by tweaking breaks and tweaks but i'm trying to get that 2 column same height thing going on and its proving a bit ...
		</summary>
		<content type="html">
			<![CDATA[Last thing - i promise! just trying to get the footer to site right in ie still by tweaking breaks and tweaks but i'm trying to get that 2 column same height thing going on and its proving a bit difficult any pointer anyone?]]>
		</content>
	</entry>
	<entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=10703#Comment_10703" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=10703#Comment_10703</id>
		<published>2007-03-28T02:55:57-04:00</published>
		<updated>2013-05-26T01:33:09-04:00</updated>
		<author>
			<name>stickygoblin</name>
			<uri>http://cssbeauty.com/skillshare/account/2318/</uri>
		</author>
		<summary type="text" xml:lang="en">
			any suggestions welcome though. Cheers all
		</summary>
		<content type="html">
			<![CDATA[any suggestions welcome though. Cheers all]]>
		</content>
	</entry>
	<entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=10708#Comment_10708" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=10708#Comment_10708</id>
		<published>2007-03-28T09:04:24-04:00</published>
		<updated>2013-05-26T01:33:09-04:00</updated>
		<author>
			<name>stickygoblin</name>
			<uri>http://cssbeauty.com/skillshare/account/2318/</uri>
		</author>
		<summary type="text" xml:lang="en">
			Hi guys,

The footers are still killing me! Browser testing has proved thus…:

FF (2.0.0.3) – Perfect (as always – good little puppy!)
IE7 – Footer is currently sitting a centimetre off ...
		</summary>
		<content type="html">
			<![CDATA[Hi guys,<br /><br />The footers are still killing me! Browser testing has proved thus…:<br /><br />FF (2.0.0.3) – Perfect (as always – good little puppy!)<br />IE7 – Footer is currently sitting a centimetre off the bottom or a centimetre below it (dependent on what I do to it – nonchalant as ever) <br />IE6 – I have no idea why this has happened (very much messing the carpet and chewing my slippers!).<br /><br />HELP – I have used the tutorial based on the man in blue from ages ago and just revised it as I have gone generally fine but now causing issues more frequently and no definitive way of stopping the footer flying around.<br /><br />Cheers<br /><br />Doug]]>
		</content>
	</entry>
	<entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=17008#Comment_17008" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=17008#Comment_17008</id>
		<published>2010-12-01T08:42:51-05:00</published>
		<updated>2013-05-26T01:33:09-04:00</updated>
		<author>
			<name>Karat</name>
			<uri>http://cssbeauty.com/skillshare/account/4054/</uri>
		</author>
		<summary type="text" xml:lang="en">
			Yes, Ковры buy from css style.. or carpets style.
		</summary>
		<content type="html">
			<![CDATA[Yes, &lt;A href="http://karatcarpet.com"&gt;Ковры&lt;/A&gt; buy from css style.. or &lt;A href="http://karatcarpet.com"&gt;carpets&lt;/A&gt; style.]]>
		</content>
	</entry>
	<entry>
		<title>IE6 / 7 Simple Problem with centering</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1858/?Focus=17032#Comment_17032" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1858/?Focus=17032#Comment_17032</id>
		<published>2011-01-02T08:33:36-05:00</published>
		<updated>2013-05-26T01:33:09-04:00</updated>
		<author>
			<name>AdamC</name>
			<uri>http://cssbeauty.com/skillshare/account/4100/</uri>
		</author>
		<summary type="text" xml:lang="en">
			I would advice you to dump ie and move to any other browser as i am sure it will be better. Firefox comes highly recommended here
		</summary>
		<content type="html">
			<![CDATA[I would advice you to dump ie and move to any other browser as i am sure it will be better. Firefox comes highly recommended here]]>
		</content>
	</entry>
	
		</feed>