HTML, JavaScript And CSS Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgrammingHTML, JavaScript And CSS Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old December 6th, 2004, 08:46 AM
pbd22 pbd22 is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 71 pbd22 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 16 h 14 m 22 sec
Reputation Power: 0
HTML Help needed

i am stuck on what seems to me should be a simple
layout. what i am trying to do is get a panel to span
above the second (main) and third (login) colums - below the header. the first
column stays exactly how it is. the panel should be on the
top, above the main body and the login (far right) column. i have
tried a bunch of things but i guess my HTML needs
improvement... anyway, help much appreciated.
here is my code:

Code:
 
<HTML>
 <HEAD>
  <title>AutList</title>
  <meta content="True" name="vs_snapToGrid">
  <meta content="True" name="vs_showGrid">
  <meta content="Microsoft Visual Studio 7.0" name="GENERATOR">
  <meta content="C#" name="CODE_LANGUAGE">
  <meta content="JavaScript" name="vs_defaultClientScript">
  <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
  <LINK href="../../CDA/portal.css" type="text/css" rel="stylesheet">
 </HEAD>
 <body>
  <form id="AutList" method="post" runat="server">
   <TABLE cellSpacing="0" cellPadding="1" width="100%" border="0">
	<TR>
	 <TD style="WIDTH: 372px; HEIGHT: 27px" colSpan="3" rowSpan="3"><uc1:header id="Header1" runat="server"></uc1:header></TD>
	</TR>
   </TABLE>
   <TABLE borderColor="activeborder" cellSpacing="0" cellPadding="1" width="686" border="1"
	style="WIDTH: 100%; HEIGHT: 100%">
	<TR>
	 <TD vAlign="top" width="10%" bgColor="#6c8fae" height="1">
	  <P><uc1:navbar id="MainNavBar" runat="server"></uc1:navbar><uc1:seperator id="Seperator2" runat="server"></uc1:seperator><uc1:newnavbar id="NewNavBar1" runat="server" Visible="False"></uc1:newnavbar></P>
	  <P>&nbsp;</P>
	  <P>&nbsp;</P>
	  <P>&nbsp;</P>
	  <P>&nbsp;</P>
	  <P>&nbsp;</P>
	  <P><uc1:xmlrss id="XMLRSS1" runat="server"></uc1:xmlrss></P>
	 </TD>
	 <TD class="HomeTxt" vAlign="top" borderColor="activeborder" align="left" width="100%"
	  bgColor="azure" height="100%">
	  <H2>
	   <FONT color="darkslategray">&nbsp;Author Content List </FONT>
	  </H2>
	  <P>
	   <STRONG>Which Content: </STRONG>
	   <asp:dropdownlist id="ddlWhichContent" runat="server" AutoPostBack="True">
		<asp:ListItem Value="0">Currently Being Created</asp:ListItem>
		<asp:ListItem Value="1">Currently Creating or Editing</asp:ListItem>
		<asp:ListItem Value="2">All Written by</asp:ListItem>
	   </asp:dropdownlist>
	   &nbsp;
	  </P>
	  <P>
	   <asp:table id="tblView" runat="server" CellSpacing="1" CellPadding="3" GridLines="Both">
		<asp:TableRow BackColor="#8CD3EF">
		 <asp:TableCell Width="5%" HorizontalAlign="Center" Text="ID"></asp:TableCell>
		 <asp:TableCell Width="5%" Font-Size="X-Small" HorizontalAlign="Center" Text="Ver"></asp:TableCell>
		 <asp:TableCell Width="72%" HorizontalAlign="Center" Text="Headline"></asp:TableCell>
		 <asp:TableCell Width="10%" Font-Size="X-Small" HorizontalAlign="Center" Text="Status"></asp:TableCell>
		 <asp:TableCell Width="2%" Font-Size="XX-Small" HorizontalAlign="Center" Text="View"></asp:TableCell>
		 <asp:TableCell Font-Size="XX-Small" Text="&nbsp;Notes&nbsp;"></asp:TableCell>
		 <asp:TableCell Width="2%" Font-Size="XX-Small" HorizontalAlign="Center" Text="Updt"></asp:TableCell>
		 <asp:TableCell Width="2%" Font-Size="XX-Small" HorizontalAlign="Center" Text="Sub"></asp:TableCell>
		 <asp:TableCell Width="2%" Font-Size="XX-Small" HorizontalAlign="Center" Text="Del"></asp:TableCell>
		</asp:TableRow>
	   </asp:table>
	  </P>
	 </TD>
	 <TD vAlign="top" align="left" bgColor="#6c8fae" height="0" rowSpan="1"><uc1:login id="ucLogin" runat="server" Visible="False"></uc1:login><uc1:logout id="ucLogout" runat="server" Visible="False"></uc1:logout><uc1:seperator id="Seperator1" runat="server"></uc1:seperator></TD>
	</TR>
	<TR>
	 <TD align="center" colSpan="5"><cmsnet:footer id="Footer1" runat="server"></cmsnet:footer></TD>
	</TR>
   </TABLE>
  </form>
  </TR></TBODY></TABLE>
 </body>
</HTML>

 

Reply With Quote
  #2  
Old December 6th, 2004, 08:50 AM
banker's Avatar
banker banker is offline
Charging Rhino Wizard
ASP Free Regular (2000 - 2499 posts)
 
Join Date: Dec 2004
Location: 127.0.0.1
Posts: 2,053 banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 5 Days 23 h 28 m 28 sec
Reputation Power: 38
after you close you form tag, it look like you close a non-existent tbody tag, and close a table that doesn't exist.

Reply With Quote
  #3  
Old December 6th, 2004, 09:14 AM
pbd22 pbd22 is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 71 pbd22 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 16 h 14 m 22 sec
Reputation Power: 0
thanks for the reply. you are right... those were left
over from my mucking about with teh placement of
the panel. i have taken them out but still wonder how
to place the panel to the right of the first column and
on top of the second (main body) and third columns?
thanks again for your help...

Reply With Quote
  #4  
Old December 6th, 2004, 10:53 AM
pbd22 pbd22 is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 71 pbd22 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 16 h 14 m 22 sec
Reputation Power: 0
Panel Placement...

Quote:
Originally Posted by pbd22
thanks for the reply. you are right... those were left
over from my mucking about with teh placement of
the panel. i have taken them out but still wonder how
to place the panel to the right of the first column and
on top of the second (main body) and third columns?
thanks again for your help...

anybody else...?

Reply With Quote
  #5  
Old December 6th, 2004, 12:55 PM
banker's Avatar
banker banker is offline
Charging Rhino Wizard
ASP Free Regular (2000 - 2499 posts)
 
Join Date: Dec 2004
Location: 127.0.0.1
Posts: 2,053 banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 5 Days 23 h 28 m 28 sec
Reputation Power: 38
do you have a public URL where I can view what you're trying to do?

Reply With Quote
  #6  
Old December 6th, 2004, 04:06 PM
pbd22 pbd22 is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 71 pbd22 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 16 h 14 m 22 sec
Reputation Power: 0
Hi and thanks for the reply. I don't but i can point you to this link which

has a similar presentation:

http://www.audible.com/adbl/store/c...ayName=Business

note the green "business" panel. I am trying to do the same thing... include a panel under the header but
to the right of the the left-most colum that spans above the body of the page and the right-most column.
sorry for the long link.... is there a way that you could demonstrate this within the code that i have provided?
i have been working on this for a good part of the day now, help really appreciated.

Reply With Quote
  #7  
Old December 6th, 2004, 07:25 PM
Lafinboy's Avatar
Lafinboy Lafinboy is offline
The Laughing Moderator
ASP Free Loyal (3000 - 3499 posts)
 
Join Date: Apr 2004
Location: Sydney, Australia
Posts: 3,268 Lafinboy User rank is Sergeant Major (2000 - 5000 Reputation Level)Lafinboy User rank is Sergeant Major (2000 - 5000 Reputation Level)Lafinboy User rank is Sergeant Major (2000 - 5000 Reputation Level)Lafinboy User rank is Sergeant Major (2000 - 5000 Reputation Level)Lafinboy User rank is Sergeant Major (2000 - 5000 Reputation Level)Lafinboy User rank is Sergeant Major (2000 - 5000 Reputation Level)  Folding Points: 29199 Folding Title: Starter FolderFolding Points: 29199 Folding Title: Starter Folder
Time spent in forums: 2 Weeks 1 Day 11 h 5 m 21 sec
Reputation Power: 36
Send a message via ICQ to Lafinboy Send a message via AIM to Lafinboy Send a message via MSN to Lafinboy Send a message via Yahoo to Lafinboy Send a message via Skype to Lafinboy
This what you want?
Code:
<HTML>
 <HEAD>
  <title>AutList</title>
  <meta content="True" name="vs_snapToGrid">
  <meta content="True" name="vs_showGrid">
  <meta content="Microsoft FrontPage 5.0" name="GENERATOR">
  <meta content="C#" name="CODE_LANGUAGE">
  <meta content="JavaScript" name="vs_defaultClientScript">
  <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
  <LINK href="../../CDA/portal.css" type="text/css" rel="stylesheet">
 </HEAD>
 <body>
  <form id="AutList" method="post" runat="server">
   <TABLE cellSpacing="0" cellPadding="1" width="100%" border="0">
	<TR>
	 <TD style="WIDTH: 372px; HEIGHT: 27px" colSpan="3" rowSpan="3">header<uc1:header id="Header1" runat="server"></uc1:header></TD>
	</TR>
   </TABLE>
   <TABLE borderColor="activeborder" cellSpacing="0" cellPadding="1" width="686" border="1"
	style="WIDTH: 100%; HEIGHT: 100%">
	<TR>
	 <TD vAlign="top" width="10%" bgColor="#6c8fae" height="1" rowspan="2">
	  <P>navbar<uc1:navbar id="MainNavBar" runat="server"></uc1:navbar><uc1:seperator id="Seperator2" runat="server"></uc1:seperator><uc1:newnavbar id="NewNavBar1" runat="server" Visible="False"></uc1:newnavbar></P>
	  <P>nada&nbsp;</P>
	  <P>nada&nbsp;</P>
	  <P>nada&nbsp;</P>
	  <P>nada&nbsp;</P>
	  <P>nada&nbsp;</P>
	  <P>rss<uc1:xmlrss id="XMLRSS1" runat="server"></uc1:xmlrss></P>
	 </TD>
	 <TD class="HomeTxt" vAlign="top" borderColor="activeborder" align="left" width="100%"
	  bgColor="red" height="50%" colspan="2">
	  &nbsp;</TD>
	</TR>
	<TR>
	 <TD class="HomeTxt" vAlign="top" borderColor="activeborder" align="left" width="100%"
	  bgColor="azure" height="50%">
	  <H2>
	   <FONT color="darkslategray">&nbsp;Author Content List </FONT>
	  </H2>
	  <P>
	   <STRONG>Which Content: </STRONG>
	   <asp:dropdownlist id="ddlWhichContent" runat="server" AutoPostBack="True">
		<asp:ListItem Value="0">Currently Being Created</asp:ListItem>
		<asp:ListItem Value="1">Currently Creating or Editing</asp:ListItem>
		<asp:ListItem Value="2">All Written by</asp:ListItem>
	   </asp:dropdownlist>
	   dropdown&nbsp;
	  </P>
	  <P>table
	   <asp:table id="tblView" runat="server" CellSpacing="1" CellPadding="3" GridLines="Both">
		<asp:TableRow BackColor="#8CD3EF">
		 <asp:TableCell Width="5%" HorizontalAlign="Center" Text="ID"></asp:TableCell>
		 <asp:TableCell Width="5%" Font-Size="X-Small" HorizontalAlign="Center" Text="Ver"></asp:TableCell>
		 <asp:TableCell Width="72%" HorizontalAlign="Center" Text="Headline"></asp:TableCell>
		 <asp:TableCell Width="10%" Font-Size="X-Small" HorizontalAlign="Center" Text="Status"></asp:TableCell>
		 <asp:TableCell Width="2%" Font-Size="XX-Small" HorizontalAlign="Center" Text="View"></asp:TableCell>
		 <asp:TableCell Font-Size="XX-Small" Text="&nbsp;Notes&nbsp;"></asp:TableCell>
		 <asp:TableCell Width="2%" Font-Size="XX-Small" HorizontalAlign="Center" Text="Updt"></asp:TableCell>
		 <asp:TableCell Width="2%" Font-Size="XX-Small" HorizontalAlign="Center" Text="Sub"></asp:TableCell>
		 <asp:TableCell Width="2%" Font-Size="XX-Small" HorizontalAlign="Center" Text="Del"></asp:TableCell>
		</asp:TableRow>
	   </asp:table>
	  </P>
	 </TD>
	 <TD vAlign="top" align="left" bgColor="#6c8fae" height="0">login<uc1:login id="ucLogin" runat="server" Visible="False"></uc1:login><uc1:logout id="ucLogout" runat="server" Visible="False"></uc1:logout><uc1:seperator id="Seperator1" runat="server"></uc1:seperator></TD>
	</TR>
	<TR>
	 <TD align="center" colSpan="3">footer<cmsnet:footer id="Footer1" runat="server"></cmsnet:footer></TD>
	</TR>
   </TABLE>
  </form>
  </TR></TBODY></TABLE>
 </body>
</HTML>

The span column is red, obviously you can change the format to suit. Notice how you need to change rowspan and colspan settings for the surrounding rows <tr> and columns <td>.

Reply With Quote
  #8  
Old December 7th, 2004, 12:38 AM
guymclaren's Avatar
guymclaren guymclaren is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Dec 2004
Location: Nelspruit South Africa
Posts: 179 guymclaren User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 9 h 1 m 21 sec
Reputation Power: 6
Is this what you are seeking

Quote:
Originally Posted by pbd22
Hi and thanks for the reply. I don't but i can point you to this link which

has a similar presentation:

http://www.audible.com/adbl/store/c...ayName=Business

note the green "business" panel. I am trying to do the same thing... include a panel under the header but
to the right of the the left-most colum that spans above the body of the page and the right-most column.
sorry for the long link.... is there a way that you could demonstrate this within the code that i have provided?
i have been working on this for a good part of the day now, help really appreciated.

<table width="400" border="2" cellspacing="2" cellpadding="2"><tr><td colspan="2" align="center">Some stuff here is wider than below</td></tr><tr><td width="200" colspan="1">some stuff</td><td width="200" colspan="1">Some stuff</td></tr><tr><td colspan="2" align="center">Some stuff here is wider than above</td></tr></table>

Reply With Quote
  #9  
Old December 7th, 2004, 08:14 AM
banker's Avatar
banker banker is offline
Charging Rhino Wizard
ASP Free Regular (2000 - 2499 posts)
 
Join Date: Dec 2004
Location: 127.0.0.1
Posts: 2,053 banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level)banker User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 5 Days 23 h 28 m 28 sec
Reputation Power: 38
I can't get to your URL from work
Quote:
Reason:

The Websense category "MP3 and Audio Download Services" is filtered.


I'll have to look at it when I get home.

Reply With Quote
  #10  
Old December 7th, 2004, 10:07 AM
pbd22 pbd22 is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 71 pbd22 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 16 h 14 m 22 sec
Reputation Power: 0
Lafinboy,

that is exactly what i was looking for... i am not sure
why i got caught there but thanks a ton for the help.
much apprecaited!

Banker/guymclaren,

thanks a lot for your assistance also.

cheers,
pbd22

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingHTML, JavaScript And CSS Help > HTML Help needed


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump





 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek