| <tool name="InsertSnippet" showicon="false" showtext="true" /> |
<CssFiles>
<telerik:EditorCssFile Value="~/Css/mainsitefile.css" />
</CssFiles>
So when I do this though, the content area is basically applying every single setting from inside the css file. Specifically my big honking background settings that the whole main website is based on.
Of course I don't want this. The background I need to apply should be one from a specific class in my main website CSS file.
So I tried to add this.
<CssClasses>
<telerik:EditorCssClass Name="blogArea" Value=".blogArea" />
</CssClasses>
But It still shows my big honking main website background instead of the simple black background in this class.
So I tried taking off the CSSFile part, but now I have nothing.
So at this point, I need help, because clearly I'm not doing this the obvious way it was intended to work. Point me in the right direction please.

| <telerik:radwindowmanager ID="radWndManager" runat="server" DestroyOnClose="true" KeepInScreenBounds="true" Behaviors="Close, Minimize, Move, Resize" /> |
| <telerik:RadSplitter id="sp1" runat="server" Orientation="Horizontal" height="100%" width="100%" BorderSize="0" BorderWidth="0px" SplitBarsSize="" |
| VisibleDuringInit="false"> |
| <telerik:RadPane ID="sp1Top01" runat="server" MaxHeight="30" Height="30" Scrolling="None" Width="100%" cssclass="div02"> |
| </telerik:RadPane> |
| <telerik:RadPane ID="sp1Restricted01" runat="server" Width="100%" Height="100%" ContentUrl="ePageBase01.aspx?a=0"> |
| </telerik:RadPane> |
| </telerik:RadSplitter> |
| <script language="javascript" type="text/javascript"> |
| function fnOpenWin(prWin, prTitle, prUrl, prModal, prIcon, prWidth, prHeight, prMaximized, prCentered, prBehaviors) |
| { |
| var oManager = GetRadWindowManager(); |
| var wWinN = oManager.open( prUrl, prWin ); |
| wWinN.add_close(OnClientClose); |
| } |
| function OnClientClose(oWnd, eventArgs) |
| { |
| oWnd.setUrl("about:blank"); // Sets url to blank |
| oWnd.remove_close(OnClientClose); //remove the close handler - it will be set again on the next opening |
| } |
| </script> |
| <asp:linkbutton id="btnNewTicket" runat="server" OnClientClick="javascript:top.fnOpenWin('TicketPop','Tickets','../01/e01TicketPop.aspx?h=1&r=0',true,'materl16.gif',790,680,false,true,36);return false;"><img src="../../img/new.gif" alt="New Ticket" /></asp:linkbutton> |
| <a href="#" onclick="javascript:top.fnOpenWin('WhoReportedIt','UserWhoReportedIt','../01/e01TicketsWhoReportedPop.aspx?h=1',true,'mat16.gif',500,380,false,true,36);return false;"><img src="../../img/viewpost.gif" alt="" /></a> |
<div id="ctl00_BlockTalen_LoadingPanel1" class=" xxx" style="display:none;">
There is an extra space in the class name.
Please inform soonest...
Marc

