Click here to Skip to main content
15,914,594 members
Home / Discussions / Web Development
   

Web Development

 
QuestionMaking FTP connection in ASP Pin
Rooby2-Jun-06 0:35
Rooby2-Jun-06 0:35 
QuestionHow to get the position of the browser ? Pin
sonsonson3331-Jun-06 22:54
sonsonson3331-Jun-06 22:54 
QuestionStarting web project takes forever Pin
livez1-Jun-06 21:17
livez1-Jun-06 21:17 
AnswerRe: Starting web project takes forever Pin
Stephan Samuel2-Jun-06 5:56
Stephan Samuel2-Jun-06 5:56 
QuestionMore CSS and DIVs [modified] Pin
Megan Forbes1-Jun-06 17:26
Megan Forbes1-Jun-06 17:26 
AnswerRe: More CSS and DIVs [modified] Pin
Guffa1-Jun-06 21:29
Guffa1-Jun-06 21:29 
GeneralRe: More CSS and DIVs [modified] Pin
Megan Forbes1-Jun-06 22:56
Megan Forbes1-Jun-06 22:56 
AnswerRe: More CSS and DIVs [modified] Pin
Guffa2-Jun-06 0:28
Guffa2-Jun-06 0:28 
GeneralRe: More CSS and DIVs [modified] Pin
Megan Forbes2-Jun-06 11:55
Megan Forbes2-Jun-06 11:55 
AnswerRe: More CSS and DIVs [modified] Pin
Guffa2-Jun-06 12:15
Guffa2-Jun-06 12:15 
GeneralRe: More CSS and DIVs Pin
Shog92-Jun-06 13:57
sitebuilderShog92-Jun-06 13:57 
AnswerRe: More CSS and DIVs Pin
Shog92-Jun-06 10:20
sitebuilderShog92-Jun-06 10:20 
GeneralRe: More CSS and DIVs Pin
Megan Forbes2-Jun-06 12:00
Megan Forbes2-Jun-06 12:00 
GeneralShog & Guffa Pin
Megan Forbes3-Jun-06 21:27
Megan Forbes3-Jun-06 21:27 
QuestionPDF on the fly asp.net 2.0? Pin
Brent Lamborn1-Jun-06 9:10
Brent Lamborn1-Jun-06 9:10 
AnswerRe: PDF on the fly asp.net 2.0? [modified] Pin
George L. Jackson1-Jun-06 11:12
George L. Jackson1-Jun-06 11:12 
QuestionDate Format Issue ? Pin
Kamal.Afridi1-Jun-06 1:32
Kamal.Afridi1-Jun-06 1:32 
AnswerRe: Date Format Issue ? Pin
jcrussell1-Jun-06 15:44
jcrussell1-Jun-06 15:44 
AnswerRe: Date Format Issue ? Pin
JackIsMe7774-Jun-06 18:26
JackIsMe7774-Jun-06 18:26 
QuestionPlacing DIVs Pin
Dario Solera1-Jun-06 0:01
Dario Solera1-Jun-06 0:01 
AnswerRe: Placing DIVs Pin
George L. Jackson1-Jun-06 4:50
George L. Jackson1-Jun-06 4:50 
This may not have the desired affect you want but it works in IE 6. These web sites might be helpful:

http://www.positioniseverything.net/[^]

http://www.webreference.com/authoring/style/sheets/layout/advanced/[^]

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Div Demo</title>
    <style type="text/css">
        #SidebarDiv 
        {
          position : absolute;
          left : 0;
          width : 180px;
          margin-left : 10px;
          margin-top : 0px;
          color : #000000;
          padding : 3px;
          background-color: blue;
        }
        
        #MainDiv 
         {
              top : 0px;
              margin : 0px 25% 0 186px;
              padding : 3px;
              color : #000000;
              background-color: red;
              width: 78%;
         }
    </style>
</head>
<body>
    <div id="SidebarDiv">
        <table>
                <tr>
                    <td>Side Bar</td>
                </tr>
                <tr>
                    <td>Side Bar</td>
                </tr>
            </table>
    </div>
    <div id="MainDiv">
         <table>
            <tr>
                <td>Main Content</td>
                <td>Main Content</td>
                <td>Main Content</td>
                <td>Main Content</td>
            </tr>
            <tr>
                <td>Main Content</td>
                <td>Main Content</td>
                <td>Main Content</td>
                <td>Main Content</td>
            </tr>
        </table>
    </div>
</body>
</html>

GeneralRe: Placing DIVs Pin
Dario Solera1-Jun-06 21:54
Dario Solera1-Jun-06 21:54 
AnswerRe: Placing DIVs Pin
Shog92-Jun-06 10:28
sitebuilderShog92-Jun-06 10:28 
AnswerRe: help me please with row colors (newbie) Pin
JackIsMe7771-Jun-06 0:31
JackIsMe7771-Jun-06 0:31 
GeneralRe: help me please with row colors (newbie) Pin
ransomed_guy1-Jun-06 0:42
ransomed_guy1-Jun-06 0:42 

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.