Here is my CSS and source code. I CANNOT get the two scripts to line up side by side in the MultiView???? Why???? I have tried padding, absolute position, relative position, margins, etc. Help would be appreciated. Thanks!!!!!
Code:#widget { padding-top:20px; padding-left: 20px; border: solid 2px white; } #widget1 { padding-top:20px; margin-left:300px; border: solid 2px white; } <%@ Page Language="C#" MasterPageFile="~/Master/MasterPage.master" AutoEventWireup="true" CodeFile="Financials.aspx.cs" Inherits="Financials_Financials" ViewStateEncryptionMode="Always" %> <asp:Content ID="myText" ContentPlaceHolderID="cphContent" Runat="Server"> <asp:MultiView ID="mViewMain" runat="server"> <asp:View ID="CustomerView" runat="server"> <asp:Panel ID="panelNavigationView1" runat="server" CssClass="TabContainer"> <asp:Label ID="labOne" runat="server" Text="Customer Information" CssClass="TabItemActive"/> <asp:LinkButton ID="lnkb_DefaultBook" runat="server" CssClass="TabItemInactive" Text="Customer Book Selections" OnCommand="LinkButton_Command" CommandName="Book" /> <asp:LinkButton ID="lnkb_DefaultCategories" runat="server" CssClass="TabItemInactive" Text="Customer Categories" OnCommand="LinkButton_Command" CommandName="Categories"/> </asp:Panel> <asp:Panel ID="panelView1" runat="server" CssClass="ContentPanel"> <div id="widget"> <script type="text/javascript" src="http://cdn.widgetserver.com/syndication/subscriber/InsertWidget.js"></script><script>if (WIDGETBOX) WIDGETBOX.renderWidget('b7341d7c-5c43-4ca1-b195-a262bee5dad4');</script><noscript>Get the <a href="http://www.widgetbox.com/widget/live-global-stock-market-ticker">Live Global Stock Market Ticker</a> widget and many other <a href="http://www.widgetbox.com/">great free widgets</a> at <a href="http://www.widgetbox.com">Widgetbox</a>!</noscript> </div> <div id="widget1"> <script type="text/javascript" src="http://cdn.widgetserver.com/syndication/subscriber/InsertWidget.js"></script><script>if (WIDGETBOX) WIDGETBOX.renderWidget('7989a535-3c46-42ca-a0c3-51a13260de4d');</script><noscript>Get the <a href="http://www.widgetbox.com/widget/index-futures-quotes-inocom">Index Futures Quotes - INO.com</a> widget and many other <a href="http://www.widgetbox.com/">great free widgets</a> at <a href="http://www.widgetbox.com">Widgetbox</a>!</noscript> </div> <asp:Button ID="view1Next" runat="server" Width="6em" Text="Next" CommandName="NextView" /> </asp:Panel> </asp:View> <asp:View ID="BookView" runat="server"> <asp:Panel ID="panelNavigationView2" runat="server" CssClass="TabContainer"> <asp:LinkButton ID="lnkb_BookCustomer" runat="server" CssClass="TabItemInactive" Text="Customer Information" OnCommand="LinkButton_Command" CommandName="Customer" /> <asp:Label ID="Label3" runat="server" Text="Customer Book Selections" CssClass="TabItemActive"/> <asp:LinkButton ID="lnkb_BookCategories" runat="server" CssClass="TabItemInactive" Text="Customer Categories" OnCommand="LinkButton_Command" CommandName="Categories"/> </asp:Panel> <asp:Panel ID="panelView2" runat="server" CssClass="ContentPanel"> <asp:Button ID="view2Back" runat="server" Width="6em" Text="Previous" CommandName="PrevView" /> <asp:Button ID="view2Next" runat="server" Width="6em" Text="Next" CommandName="NextView" /> </asp:Panel> </asp:View> <asp:View ID="CategoriesView" runat="server"> <asp:Panel ID="panelNavigationView3" runat="server" CssClass="TabContainer"> <asp:LinkButton ID="lnkb_CategoriesCustomer" runat="server" CssClass="TabItemInactive" Text="Customer Information" OnCommand="LinkButton_Command" CommandName="Customer" /> <asp:LinkButton ID="lnkb_CategoriesBook" runat="server" CssClass="TabItemInactive" Text="Customer Book Selections" OnCommand="LinkButton_Command" CommandName="Book"/> <asp:Label ID="Label4" runat="server" Text="Customer Categories" CssClass="TabItemActive"/> </asp:Panel> <asp:Panel ID="panel3" runat="server" CssClass="ContentPanel"> <asp:Button ID="view3Prev" runat="server" Width="6em" Text="Previous" CommandName="PrevView" /> <asp:Button ID="view3First" runat="server" Width="6em" Text="Start" CommandName="SwitchViewByIndex" CommandArgument="0" /> </asp:Panel> </asp:View> </asp:MultiView> </asp:Content>


Reply With Quote


Bookmarks