Click here to Skip to main content
15,885,278 members
Home / Discussions / Web Development
   

Web Development

 
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
mve#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
mve#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
mve#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 
QuestionHow can i solve 400 Bad Request Error Pin
Rasma Raj29-Jan-09 16:09
Rasma Raj29-Jan-09 16:09 
AnswerRe: How can i solve 400 Bad Request Error Pin
N a v a n e e t h29-Jan-09 17:46
N a v a n e e t h29-Jan-09 17:46 
GeneralRe: How can i solve 400 Bad Request Error Pin
Rasma Raj29-Jan-09 18:38
Rasma Raj29-Jan-09 18:38 
GeneralRe: How can i solve 400 Bad Request Error Pin
Johnny ²29-Jan-09 20:48
Johnny ²29-Jan-09 20:48 
GeneralRe: How can i solve 400 Bad Request Error Pin
Rasma Raj29-Jan-09 21:41
Rasma Raj29-Jan-09 21:41 
QuestionProblem in retrieving image file sent through web service Pin
viralp4u29-Jan-09 9:41
viralp4u29-Jan-09 9:41 
GeneralRe: Problem in retrieving image file sent through web service Pin
Shog929-Jan-09 16:19
sitebuilderShog929-Jan-09 16:19 
Questionlink button not fireing asp.net Pin
nitpall29-Jan-09 1:25
nitpall29-Jan-09 1:25 
GeneralRe: link button not fireing asp.net Pin
Shog929-Jan-09 7:07
sitebuilderShog929-Jan-09 7:07 
QuestionHow to deploy SharePoint website or webapplication? Pin
salon28-Jan-09 21:49
salon28-Jan-09 21:49 

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.