Welcome!

And don't forget to edit your signature & profile.

 

Icon

Statistics

  • Total posts 23318
  • Total topics 4049
  • Total members 5574
  • Our newest member
    ALF5583

TOP POSTERS

IE 6 & CSS....

All problems and developments related to (X)HTML-markup and stylesheets are discussed and resolved here.
   

IE 6 & CSS....

Postby one9ooh6 » Thu Oct 29, 2009 6:14 pm

Can anyone please tell me why IE 6 is causing my page to look different thatn IE 8. Please see the screen shot below...

EPRNM_screenshot.jpg
EPRNM_screenshot.jpg (57.67 KiB) Viewed 297 times
one9ooh6
Smashing <table>
 
Posts: 22
Joined: Mon Aug 24, 2009 11:24 am
   

   

Re: IE 6 & CSS....

Postby Andy » Thu Oct 29, 2009 6:52 pm

one9ooh6 wrote:Can anyone please tell me why IE 6 is causing my page to look different thatn IE 8.


No we cannot because you gave us nothing to work with. No code, no link. Nothing.
Andy
Smashing <h5>
 
Posts: 1023
Joined: Tue Sep 30, 2008 6:42 pm
Location: Sweden
   

   

Re: IE 6 & CSS....

Postby sydneycraig » Thu Oct 29, 2009 6:58 pm

it is because IE6 is rubbish and should not be supported!
sydneycraig
Smashing <table>
 
Posts: 21
Joined: Mon Feb 09, 2009 9:23 pm
   

   

Re: IE 6 & CSS....

Postby Andy » Thu Oct 29, 2009 7:31 pm

sydneycraig wrote:it is because IE6 is rubbish and should not be supported!


No, it's because you can't code. Now go back to hiding under whatever rock you crawled up from.

In the meanwhile, the rest of us will take the time to actually answer questions rather than trolling the threads.
Andy
Smashing <h5>
 
Posts: 1023
Joined: Tue Sep 30, 2008 6:42 pm
Location: Sweden
   

   

Re: IE 6 & CSS....

Postby sydneycraig » Thu Oct 29, 2009 10:08 pm

:thumbsup:
sydneycraig
Smashing <table>
 
Posts: 21
Joined: Mon Feb 09, 2009 9:23 pm
   

   

Re: IE 6 & CSS....

Postby Andy » Thu Oct 29, 2009 11:27 pm

sydneycraig wrote::thumbsup:


You liked that, huh? :lol:
Andy
Smashing <h5>
 
Posts: 1023
Joined: Tue Sep 30, 2008 6:42 pm
Location: Sweden
   

   

Re: IE 6 & CSS....

Postby one9ooh6 » Fri Oct 30, 2009 5:35 pm

Sorry bout that...

/* Page */

#page {
width: 890px;
margin-top: 0;
margin-bottom: 0;
/*background-image: url(images/page_background.jpg);
background-repeat: repeat-y;
background-position: left top;*/
padding: 0px;
background-color: #FFFFFF;
margin-right: auto;
margin-left: auto;
}

#page_bgbtm{
/*background-image: url(images/%20page_bottom.gif);
background-repeat:no-repeat;
background-position:left bottom;*/
padding-top: 30px;
padding-right: 40px;
padding-bottom: 30px;
padding-left: 30px;
}
one9ooh6
Smashing <table>
 
Posts: 22
Joined: Mon Aug 24, 2009 11:24 am
   

   

Re: IE 6 & CSS....

Postby one9ooh6 » Fri Oct 30, 2009 5:36 pm

The code I have pasted is for the page div that controls the white space...if you need all of the CSS just let me know. Thanks in advance!
one9ooh6
Smashing <table>
 
Posts: 22
Joined: Mon Aug 24, 2009 11:24 am
   

   

Re: IE 6 & CSS....

Postby Andy » Fri Oct 30, 2009 5:41 pm

one9ooh6 wrote:The code I have pasted is for the page div that controls the white space...if you need all of the CSS just let me know. Thanks in advance!


How about you either:

A) give us some markup so we have something to apply those CSS rules to, or
B) give us a link to the project

?

Furthermore, you have BBCode formatters for code. Please use them.
Andy
Smashing <h5>
 
Posts: 1023
Joined: Tue Sep 30, 2008 6:42 pm
Location: Sweden
   

   

Re: IE 6 & CSS....

Postby imagn » Sat Oct 31, 2009 2:19 pm

There's a bug in IE6 when it comes to using left or right margins.

Trying adding the following to whatever DIV contains that banner:

Code: Select all
* html #your-div-id {
display: inline;
}
Matt Artingstall
Design, PHP, CSS, JavaScript
Imagn Design: Los Angeles Web Design Firm
User avatar
imagn
Smashing <table>
 
Posts: 23
Joined: Sat Jun 27, 2009 3:39 pm
Location: Los Angeles, California
   

   

Re: IE 6 & CSS....

Postby Andy » Sat Oct 31, 2009 3:08 pm

imagn wrote:There's a bug in IE6 when it comes to using left or right margins.

Trying adding the following to whatever DIV contains that banner:

Code: Select all
* html #your-div-id {
display: inline;
}


Why? He's not using any floats. There aren't any bugs in margins if you aren't using float.
Andy
Smashing <h5>
 
Posts: 1023
Joined: Tue Sep 30, 2008 6:42 pm
Location: Sweden
   

   

Re: IE 6 & CSS....

Postby Tom » Sat Oct 31, 2009 7:27 pm

Are you using a reset stylesheet before applying any other CSS to the page?
Tom Sinclair
Tom
 
Posts: 5
Joined: Sun Sep 28, 2008 10:56 am
Location: Manchester, UK
   

   

Re: IE 6 & CSS....

Postby one9ooh6 » Sun Nov 01, 2009 3:12 pm

Hey everyone,

Here's the link to the project, http://www.elizapillars.org/leavesdew/index.html
one9ooh6
Smashing <table>
 
Posts: 22
Joined: Mon Aug 24, 2009 11:24 am
   

   

Re: IE 6 & CSS....

Postby Andy » Sun Nov 01, 2009 5:02 pm

remove width and margins from #logo, #header & #page.

change #wrapper to:

Code: Select all
#wrapper {
  width: 890px;
  margin: 0 auto;
}
Andy
Smashing <h5>
 
Posts: 1023
Joined: Tue Sep 30, 2008 6:42 pm
Location: Sweden
   

   

Re: IE 6 & CSS....

Postby one9ooh6 » Mon Nov 02, 2009 11:41 am

Andy,

Thanks so much! That fixed the issue. What exactly was the problem?
one9ooh6
Smashing <table>
 
Posts: 22
Joined: Mon Aug 24, 2009 11:24 am
   


Return to CSS and (X)HTML



Who is online

Users browsing this forum: No registered users and 2 guests