Vertical Toolbar

Last post 02-19-2009, 12:50 PM by docseuss. 2 replies.
Sort Posts: Previous Next
  •  02-18-2009, 9:56 AM 48934

    Vertical Toolbar

    Issue I am having is that my toolbar for Image Gallery is displaying vertically and I have found no way to make it horizontal. I took the code directly from your examples which show the toolbar horizontal, but mine does not display that way. Below is a screen shot of what I am seeing. I have even tried and put Image Gallery in a table on a blank page and I always get this vertical toolbar. Any ideas?
     
  •  02-18-2009, 3:48 PM 48966 in reply to 48934

    Re: Vertical Toolbar

    If you take off the css file from this page, will it work?
     
    I think the style sheet cause the problem.
     
    keep me posted

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  02-19-2009, 12:50 PM 49009 in reply to 48966

    Re: Vertical Toolbar

    No I get the same behavoir. Here is the page code for my test page. Is there some sort of CSS that I need to implement in order to get this to display horizontally?
     
    1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="ImageGalleryNoCss.aspx.cs" Inherits="Intranet_ImageGalleryNoCss" %>  
    2.     <%@ Register TagPrefix="CE" Namespace="DotNetGallery" Assembly="DotNetGallery" %>  
    3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    4.   
    5. <html xmlns="http://www.w3.org/1999/xhtml">  
    6. <head runat="server">  
    7.     <title></title>  
    8. </head>  
    9. <body>  
    10.     <form id="form1" runat="server">  
    11.     <div>  
    12.   
    13.     <CE:Gallery    
    14.                 id="imageGallery"    
    15.                 runat="server"    
    16.                 Width="100%"    
    17.                 Column = "4"  
    18.                 MaxImageWidth="1024"  
    19.                 BackColor="#ffffff"  
    20.                 CellPadding="5"        
    21.                 AutoResizeUploadedImages = "true"          
    22.                 CellSpacing="5"  
    23.                 ForeColor="#000000"  
    24.                 BorderColor="#cc0000"  
    25.                 BorderStyle="solid"  
    26.                 BorderWidth="0"  
    27.                 CssClass="container"  
    28.                 ShowUpload="false"  
    29.                 ShowEditDescription="true"  
    30.                 ShowDescriptioninIndexView="true"  
    31.                 ShowThumbNailName="true"       
    32.                 ShowThumbNailSize="false"      
    33.                 ShowThumbNailDate="true"       
    34.                 ShowThumbNailDescription="true"    
    35.                 ShowHome="false"  
    36.                 ToolBarLocation="Top"  
    37.             />  
    38.     </div>  
    39.     </form>  
    40. </body>  
    41. </html>  
View as RSS news feed in XML