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?
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="ImageGalleryNoCss.aspx.cs" Inherits="Intranet_ImageGalleryNoCss" %>
- <%@ Register TagPrefix="CE" Namespace="DotNetGallery" Assembly="DotNetGallery" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title></title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
-
- <CE:Gallery
- id="imageGallery"
- runat="server"
- Width="100%"
- Column = "4"
- MaxImageWidth="1024"
- BackColor="#ffffff"
- CellPadding="5"
- AutoResizeUploadedImages = "true"
- CellSpacing="5"
- ForeColor="#000000"
- BorderColor="#cc0000"
- BorderStyle="solid"
- BorderWidth="0"
- CssClass="container"
- ShowUpload="false"
- ShowEditDescription="true"
- ShowDescriptioninIndexView="true"
- ShowThumbNailName="true"
- ShowThumbNailSize="false"
- ShowThumbNailDate="true"
- ShowThumbNailDescription="true"
- ShowHome="false"
- ToolBarLocation="Top"
- />
- </div>
- </form>
- </body>
- </html>