Skip to main content
Participant
December 22, 2011
Question

Vertical Menu on Left side

  • December 22, 2011
  • 2 replies
  • 1183 views

Hi,

I am new to coldfusion. My application need a vertical menu on the left side. This menu should be displayed on all the pages. I decided to use cfinclude tag for this.

I thought I will use <table> tag to make the menu.cfm appear at the left hand side and page.cfm(Actual content page) to come on right side. But my menu.cfm is going out of table. I tried to make the width of the table to 20%. But nothing is working out.

Can you please help me!

Regards,

Anjana

    This topic has been closed for replies.

    2 replies

    Participating Frequently
    January 21, 2012

    check menu.cfm to find any closing tags,

    create a "header.cfm" page as follows:

    <table>

         <tr>

              <td valign="top"><cfinclude template="menu.cfm"></td>

              <td valign="top">

    Then on all pages at the top

    <cfinclude template="header.cfm">

    December 30, 2011

    I discovered some odd things like that when I was using Google Chromse as the browser.

    IE and Firefox works fine though.

    Is this the case here as well I wonder ?