|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Ajax Application Generator Generate database and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!
|
|
#1
|
|||
|
|||
|
modular web page
Hello
What would I change in the template of the modular php web page in order to have a right column ? Thanks Jeff |
|
#2
|
||||
|
||||
|
Perhaps you could show some code?
|
|
#3
|
|||
|
|||
|
Sorry, here is the code !
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>J.A Carpunky , Internet marketing and Business Opportunities</title> <meta name="Author" content="Stone Evans, The Home Biz Guy"> <meta name="Copyright" content="Copyright © Jeffrey Carpunky"> <meta name="Subject" content="work at home"> <meta name="Description" content="Work at Home Ideas and Opportunities!"> <meta name="Keywords" content="work at home, work at home ideas, work at home opportunities"> <meta name="Revisit-after" content="15 days"> <meta name="Rating" content="GENERAL"> <meta name="Robots" content="All"> <meta name="Classification" content="Business"> <LINK href="menu.css" rel=StyleSheet><style type="text/css"> </style></head> <body style= align="center" "margin: 0px;"> <table align="center" cellpadding="5" cellspacing="0" border="4" > <tr> <!--insert column here --> <?php include 'top.inc'; ?> </tr> <tr> <!--insert column here --> <?php include 'sidebar.inc'; ?> <!--setting width to 100% here forces most browsers to fill screen --> <td valign=top align=leftclass="main" width="500"> body text Here </td> </tr> <tr> <!--insert columns here --> <? include 'bottom.inc' ?> </tr> </table> </body> </html> |
|
#4
|
||||
|
||||
|
I think this is what you want:
Code:
<table align="center" cellpadding="5" cellspacing="0" border="4" > <tr> <td colspan="2"> <!--insert column here --> <?php include 'top.inc'; ?> </td> </tr> <tr> <td valign=top align=leftclass="main"> <!--insert column here --> <?php include 'sidebar.inc'; ?> <!--setting width to 100% here forces most browsers to fill screen --> body text Here </td> <td valign=top align=leftclass="main"> right hand column </td> </tr> <tr> <td colspan="2"> <!--insert columns here --> <? include 'bottom.inc' ?> </td> </tr> </table> |
![]() |
| Viewing: Dev Articles Community Forums > Web Design > Web Development > modular web page |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|