Page 1 of 1

Simpler way of making tutorial

Posted: Wed 10. Mar 2004, 23:44
by bobd314
Ok it would be nice/nicer if there was a way I just just put in all the HTML For my page.. have just the whole layout in one page not having to split it up into like header and stuff, just have everything in the same place, like on one page have

Code: Select all

<meta http-equiv="Content-Language" content="en-us">
<p align="center">THIS IS THE HEADER</p>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
  <tr>
    <td width="33%">{MENU}</td>
    <td width="33%">{CONTENT}</td>
    <td width="34%">{SOME OTHER CRAP}</td>
  </tr>
</table>
<p align="center">THIS IS THE FOOTER</p>
and just have all that in one space instead of having to split it up.. that's my idea, it just seems easier to me.

Posted: Thu 11. Mar 2004, 11:52
by Jan212
you can allready do this - put the whole code between <body></body> in the backends template main block and checkout default page rendering under -> Layout (right checkbox) - like

Code: Select all

<p align="center">THIS IS THE HEADER</p> 
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%"> 
  <tr> 
    <td width="33%">{NAV_LIST_TOP}</td> 
    <td width="33%">{CONTENT}</td> 
    <td width="34%">{ALT_E_FRAU}</td> 
  </tr> 
</table> 
<p align="center">THIS IS THE FOOTER</p>
Sinse is wicked.

Posted: Thu 11. Mar 2004, 17:34
by bobd314
Hmm I was thinking about just doing something where I make all boxes but main like 0 and then use just that. I hadn't tried it, was just wondering.

Posted: Thu 11. Mar 2004, 17:46
by bobd314
Why the hell did I call it bla bla bla tutorial.. I ment template.