Use your version of centre ;)
Ok, I have the following set up:
And the stylesheet:
Works really great but the content will not left-align!
How can I left-align my content?
Richard
Ok, I have the following set up:
| <telerik:GridTemplateColumn |
| HeaderText="Content" |
| UniqueName="ActivityContent" |
| Visible="false"> |
| <EditItemTemplate> |
| <telerik:RadEditor |
| ID="ContentEditor" |
| runat="server" |
| ContentAreaCssFile="~/Assets/Styles/GridHtmlEditor.css" Content='<%# Bind("Content") %>' /> |
| </EditItemTemplate> |
| <ItemTemplate> |
| <asp:Label ID="ContentLabel" runat="server" Text='<%# Eval("Content") %>' /> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
And the stylesheet:
| body |
| { |
| background-color: white !important; |
| background-image: none !important; |
| color: black; |
| font: 12px Verdana,Arial,Helvetica,Sans-Serif !important; |
| text-align:left !important; |
| } |
Works really great but the content will not left-align!
How can I left-align my content?
Richard