Click here to Skip to main content
15,900,254 members
Home / Discussions / Web Development
   

Web Development

 
Questiononclick event not working in firefox but works in IE Pin
uglyeyes1-Feb-09 21:41
uglyeyes1-Feb-09 21:41 
AnswerRe: onclick event not working in firefox but works in IE Pin
SeMartens2-Feb-09 2:44
SeMartens2-Feb-09 2:44 
QuestionJAVASCRIPT selectNodes() returns 0 if XML contains '&' char Pin
Arindam Tewary1-Feb-09 21:26
professionalArindam Tewary1-Feb-09 21:26 
QuestionAJAX Pin
saurabh200671-Feb-09 17:48
saurabh200671-Feb-09 17:48 
AnswerRe: AJAX Pin
SeMartens2-Feb-09 2:50
SeMartens2-Feb-09 2:50 
GeneralRe: AJAX Pin
saurabh200672-Feb-09 6:36
saurabh200672-Feb-09 6:36 
QuestionJavaScript Error with IE Pin
r aa j1-Feb-09 17:37
r aa j1-Feb-09 17:37 
AnswerRe: JavaScript Error with IE Pin
saurabh200671-Feb-09 19:13
saurabh200671-Feb-09 19:13 
Questionautogenerate column Pin
Mhiny1-Feb-09 16:43
Mhiny1-Feb-09 16:43 
Questionapp.config vs app.xaml [modified] Pin
devvvy31-Jan-09 17:35
devvvy31-Jan-09 17:35 
AnswerRe: app.config vs app.xaml Pin
devvvy31-Jan-09 18:08
devvvy31-Jan-09 18:08 
QuestionWPF and web browser application [modified] Pin
devvvy31-Jan-09 16:02
devvvy31-Jan-09 16:02 
QuestionCSS Problems in IE [modified] Pin
#realJSOP31-Jan-09 2:33
professional#realJSOP31-Jan-09 2:33 
AnswerRe: CSS Problems in IE Pin
Aman Bhullar31-Jan-09 5:27
Aman Bhullar31-Jan-09 5:27 
GeneralRe: CSS Problems in IE Pin
#realJSOP31-Jan-09 5:41
professional#realJSOP31-Jan-09 5:41 
GeneralRe: CSS Problems in IE Pin
Shog931-Jan-09 7:22
sitebuilderShog931-Jan-09 7:22 
GeneralRe: CSS Problems in IE Pin
Guffa1-Feb-09 13:26
Guffa1-Feb-09 13:26 
AnswerRe: CSS Problems in IE Pin
Shog931-Jan-09 8:39
sitebuilderShog931-Jan-09 8:39 
The header problem:
You've fixed the width of the page at 950px, and sized the floating boxes contained therein at 400px and 550px. However, the quote box contained in the left floating box is sized at 100% + 3px of left padding - putting the width at 403px. IE then overrides the set width of the outer box, making it 403px as well. Since both boxes float, this forces the right box to wrap; since the header is styled with overflow:hidden, the wrapped box disappears.

Potential header solutions:
  1. Change the width style in the HeaderQuoteBox rule to auto (instead of 100%) - will then become only as wide as its parent allows (400px).
  2. Remove the float and width styles from the rule for HeaderRight. This will put the right box back into the normal flow, letting the left box float to its left.
  3. Add overflow: hidden; style to the rule for HeaderLeft. This will cut 3px off of the 403px width of the inner box, allowing both floating boxes to appear on the same line (but potentially cutting off content in the HeaderLeft box).
The scrolling content panel problem:
You're positioning the PageContent div using absolute top and bottom coordinates. This works great in every browser that isn't IE6... But IE6 decides the two positions conflict, and ignores one. This particular bit of IE madness is well-documented, and a good workaround (using IE's expression feature) can be found on A List Apart[^].

The scrolling content panel solution:
Add the following code to your page to patch up IE6:
    <!--[if lt IE 7]>
    <style type="text/css">
    #PageContent
    {
        /* body height - header - footer - padding - border */
        height:expression(document.body.clientHeight-144-24-10-2);
    }
    </style>
    <![endif]-->



GeneralRe: CSS Problems in IE Pin
#realJSOP31-Jan-09 23:36
professional#realJSOP31-Jan-09 23:36 
QuestionDecoding base64 to generate png image Pin
Rajiya29-Jan-09 17:36
Rajiya29-Jan-09 17:36 
AnswerRe: Decoding base64 to generate png image Pin
SeMartens29-Jan-09 21:29
SeMartens29-Jan-09 21:29 
AnswerRe: Decoding base64 to generate png image Pin
Mohammad Dayyan30-Jan-09 0:47
Mohammad Dayyan30-Jan-09 0:47 
GeneralRe: Decoding base64 to generate png image Pin
Rajiya30-Jan-09 1:24
Rajiya30-Jan-09 1:24 
GeneralRe: Decoding base64 to generate png image Pin
SeMartens30-Jan-09 1:32
SeMartens30-Jan-09 1:32 
GeneralRe: Decoding base64 to generate png image Pin
Mohammad Dayyan30-Jan-09 1:34
Mohammad Dayyan30-Jan-09 1:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.