I'm a newbie to DNN, so pardon what may appear a basic question. I am working in .Net 1.1 and DNN 3.3.6
I am trying to do some very simple css styling.
The css file is called HelloWorld.css and here are the contents.
table.makemered {background:RED;}
On the 2nd line of the .ascx file, I have the following link to the css file:
<LINK rel="stylesheet" type="text/css" href="HelloWorld.css">
I have a repeater control which includes the following markup:
<asp:repeater id="rpHelloWorld" runat="server">
<HeaderTemplate>
<table class="makemered" border="0" width="100%">
When I view the control in design view, the header row is shown in red -- exactly how I expect it. However, after I save the file and go to view it in DNN, I do not see any styling.
Can someone fill me in as to what is happening?
This is very basic and I'm would like to avoid the trouble of creating and uploading a skin for what amounts to 1 line of code.
Thanks,
John