Re: Vertical Toolbar

  •  02-19-2009, 12:50 PM

    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 Complete Thread