There is this 3 column webpage made in CSS using DIVs. The left column is for menus, middle one of content an dright one for some other purpose. Now, My question is How do I make the middle column load first...Is it possible???
Crude sample: <head> <style> div.leftColumn { position: absolute; top: 0px; left: 0px; width: 200px; background-color: #330066; } div.rightColumn { position: absolute; top: 0px; right: 0px; width: 200px; background-color: #330066; } div.mainColumn { margin-left: 200px; margin-right: 200px; } </style> </head> <body> <div class="mainColumn">Middle column here</div> <div class="leftColumn">Left column here</div> <div class="rightColumn">Right column here</div> </body> HTML:
Yes, I did and passed this to my desinger. He is looking in to it. Let's hope he finds the answer. Thanks
essentially, the code appearing first in your source is the one loaded first on the user's screen the css is just used to "move" it to the centre while keeping it at the beginning of the document source