Do I need Nuke to have the gallery...

badvox
badvox's picture

Joined: 2002-10-23
Posts: 5
Posted: Mon, 2002-10-28 23:41

I want to have a nav menu as a sidebar and maybe news on the right hand side.
But I cannot figure out how to do it in html. I can do the html.wrap stuff for
my footer and header but how do I get my <body> to have sides and gallery in the
middle?

I have seen samples that I like but obviously can't see the code to implement it.
Any sample or even a pointer to a sample would be much appreciated.

Sincerely,
Mike "Badvox"

 
beckett
beckett's picture

Joined: 2002-08-16
Posts: 3474
Posted: Tue, 2002-10-29 03:18

Hi... I posted outline HTML for a left vertical navbar in <!-- BBCode Start --><A HREF="http://gallery.menalto.com/modules.php?op=modload&amp;name=phpBB_14&amp;file=index&amp;action=viewtopic&amp;topic=1375&amp;5328" TARGET="_blank">this thread</A><!-- BBCode End --> (look down near the bottom).

To add one to the right side as well, you'll have to add this to the top of the html_wrap/*.footer files:
<!-- BBCode Start --><TABLE BORDER=0 ALIGN=CENTER WIDTH=85%><TR><TD><font class="pn-sub">Code:</font><HR></TD></TR><TR><TD><FONT class="pn-sub"><PRE> </td>
<!-- EXTRA RIGHT-HAND COLUMN -->
<td width="150">
<!-- PUT CONTENT HERE -->
</td>
<!-- EXTRA RIGHT-HAND COLUMN END -->
</tr></TD></TR></TABLE><!-- BBCode End -->

So the overall concept is this:
<!-- BBCode Start --><TABLE BORDER=0 ALIGN=CENTER WIDTH=85%><TR><TD><font class="pn-sub">Code:</font><HR></TD></TR><TR><TD><FONT class="pn-sub"><PRE><tr>
<td width="150"> LEFT COLUMN </td>
<td>
<!-- END HEADER -->
...GALLERY...
<!-- BEGIN FOOTER -->
</td>
<td width="150"> RIGHT COLUMN </td>
</tr></TD></TR></TABLE><!-- BBCode End -->

-Beckett (beck@beckettmw.com)

 
badvox
badvox's picture

Joined: 2002-10-23
Posts: 5
Posted: Wed, 2002-10-30 23:15

Thank you, I was looking in the customize section which may have been wrong.
I appreciate you rreply very much!!

Mike "Badvox"