[css-d] Help with IE8, all other browsers look pixel perfect, pls give a few pointers

2010-06-29 Thread Zoran Zorkic
So,
I have a page up at http://efri.dreamhosters.com and is loking fine in Firefox, 
Chrome and Safari, but IE8 looks broken as hell.
I tried to pinpointthe problems, but I have trouble with that.
First I tried removing the floats, but still gives me problems :(

Would you please just take a look at it and point me in the right direction.
Thanks!




__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Help with IE8, all other browsers look pixel perfect, pls give a few pointers

2010-06-29 Thread David Laakso
Zoran Zorkic wrote:
 So,
 I have a page up at http://efri.dreamhosters.com and is loking fine in 
 Firefox, Chrome and Safari, but IE8 looks broken as hell.
 I tried to pinpointthe problems, but I have trouble with that.
 First I tried removing the floats, but still gives me problems :(

 Would you please just take a look at it and point me in the right direction.
 Thanks!
   



Add a doctype and bring it back.
Replace what you have with this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN 
http://www.w3.org/TR/html4/strict.dtd;
html
head
titleEkonomski fakultet u Rijeci - Skripte/title
meta http-equiv=content-type content=text/html;  charset=utf-8
meta content=Skripte za Ekonomski fakultet u Rijeci. Besplatni 
download i preuzimanje. name=Description /
meta content=skripte, fax, efri, rijeka, ekonomski, fakultet, faks, 
predavanja, ispiti, ispit, pitanja, salbahter name=keywords /
link href=dream_files/favicon0.ico rel=icon 
type=image/vnd.microsoft.icon /
style type=text/css 
media=screen@importdream_files/efri.css;/style
script type=text/javascript

Best,
~d






-- 
desktop
http://chelseacreekstudio.com/

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Help with IE8, all other browsers look pixel perfect, pls give a few pointers

2010-06-29 Thread russ
 I have a page up at http://efri.dreamhosters.com and is loking fine in 
 Firefox, Chrome and Safari, but IE8 looks broken as hell.

 Add a doctype and bring it back.

There are also errors in the CSS. For example, there is a missing semicolon 
on line 22. Try validating the CSS.

Russ

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Help with IE8, all other browsers look pixel perfect, pls give a few pointers

2010-06-29 Thread Zoran Zorkic
On Tue, 29 Jun 2010 12:48:55 -0400, David Laakso wrote:
Add a doctype and bring it back.

Added it. Ah should have used my template, instead of writing everything from 
scratch (I use only UltraEdit).
Wow, it looks good. Thanks!





__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Help with IE8, all other browsers look pixel perfect, pls give a few pointers

2010-06-29 Thread Donald Fruy
On Tue, Jun 29, 2010 at 7:39 PM,  r...@catjuggling.com wrote:
 I have a page up at http://efri.dreamhosters.com and is loking fine in
 Firefox, Chrome and Safari, but IE8 looks broken as hell.

 Add a doctype and bring it back.

 There are also errors in the CSS. For example, there is a missing semicolon
 on line 22. Try validating the CSS.

 Russ


Hi,

... and it's important to close properly each open tag


!doctype html
html
head
...
/head
body
...
/body !-- don't forget this --
/html !-- and this --

-- 
Donald
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Help with IE8, all other browsers look pixel perfect, pls give a few pointers

2010-06-29 Thread Chris F.A. Johnson
On Tue, 29 Jun 2010, Donald Fruy wrote:

 On Tue, Jun 29, 2010 at 7:39 PM,  r...@catjuggling.com wrote:
  I have a page up at http://efri.dreamhosters.com and is loking fine in
  Firefox, Chrome and Safari, but IE8 looks broken as hell.
 
  Add a doctype and bring it back.
 
  There are also errors in the CSS. For example, there is a missing semicolon
  on line 22. Try validating the CSS.
 
  Russ
 
 
 Hi,
 
  and it's important to close properly each open tag
 
 
 !doctype html
 html
 head
 
 /head
 body
 
 /body !-- don't forget this --
 /html !-- and this --

   The closing tags for BODY and HTML (as well as HEAD and some
   others) are optional in HTML4.01.

-- 
   Chris F.A. Johnson, http://cfajohnson.com
   Author:
   Pro Bash Programming: Scripting the GNU/Linux Shell (2009, Apress)
   Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/