1) Go to the Settings for the page where you want to add the headers
2) Expand Advanced Settings
3) Put your code in the Page Header Tags field.
Filed under DNN DotNetNuke | No Comments »
1) Go to the Settings for the page where you want to add the headers
2) Expand Advanced Settings
3) Put your code in the Page Header Tags field.
Filed under DNN DotNetNuke | No Comments »
If you aren’t happy with the small presentation area for articles on the listing.item.html template that shows the display for the main NA module. Look for this code and change the [DETAILS:150] object to read the number of characters you want to display. The default is 150.
<td class="articleTextCell">
<span class="Normal">
[HASSUMMARY][SUMMARY][/HASSUMMARY][HASNOSUMMARY][DETAILS:150][/HASNOSUMMARY]
</span>
</td>
Filed under DNN DotNetNuke, Ventrian News Articles Module | No Comments »
Filed under DNN DotNetNuke, Ventrian News Articles Module | No Comments »
See DNN – Custom CSS Stylesheet for FCK Editor for how to set up a customized style sheet. To avoid having to maintain redundant style sheets between your skin.css and your FCK Editor style sheet, place a reference to your FCK Editor style sheets at the top of the portal.css file stored at the root of your portal.
@import url("fckeditor.css");
Write all the styles that are relevant to your html/text module areas into the FCK Editor style sheet not your skin.css. Your customized stylesheet will be available to FCK Editor as well as your document and you’ll only have to maintain your styles in one file.
Filed under DNN DotNetNuke | No Comments »
Use of the formatting tools in FCK Editor isn’t recommended since it loads documents down with unwanted tags. One alternative: preparing your data with a style sheet in a program like Dreamweaver, can quickly grow old. Switching back and forth between several applications repeatedly while editing, along with the lack of WYSIWYG in the editor makes this method cumbersome.
The good news is you can synch stylesheets between your skin and/or container .css and the .css used in FCK Editor. With a little setup, you’ll have the same display in and out of the editor window and your style dropdown list will be populated with your styles, not the generic FCK Editor styles.
The FCK Editor requires the creation of a .css and a .xml file to properly display styles. To reproduce your skin and/or container styles in FCK Editor:
- Style list generation mode: URL
- Custom xml file: Root, your xml file
- Style list generation mode: URL
- Custom css file: Root, your css file
Filed under DNN DotNetNuke | No Comments »