Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Provider and Extension ForumsProvider and Extension ForumsFCKeditorFCKeditorHow to create a list of custom styles by portal in the FCK EditorHow to create a list of custom styles by portal in the FCK Editor
Previous
 
Next
New Post
4/26/2007 3:27 AM
 

After much searching, exploring and many failures I finally found a system that worked for me. 
Here's for all the help you all have given me.

  1. Add your customs styles to portal.css in the portal root (Site Settings > Style Sheet) and save. These styles will be applied to your module text outside of the editor.
  2. Create a text file: FCK.xml. Here is where you will define styles to appear in the style list inside the FCK editor.
  3. Using the information in the FCK Editor Wiki help site, create your custom styles in FCK.xml. There should be an entry for each style you want to appear in the editor and in the order you want them to appear. See example below.
  4. Create a text file: FCK.css. These styles give the formatting to the styles you defined in FCK.xml so text in the editor will be formatted properly.
  5. Add your custom styles to FCK.css. This file contains ONLY your custom styles which are exactly the same as the custom styles you added to portal.css. There should be an entry for each style in FCK.xml you want to format.
    Using these lists limits the styles that appear in the editor to only those you want, rather than the long list of styles in portal.css.
  6. Upload FCK.css and FCK.xml to your portal root using the File Manger.
  7. Log in to your portal as Host and edit an HTML/Text module with the FCK Editor.
  8. Select "Show custom editor options"
    Select "Portal" for Settings Type.
  9. Expand "List of available styles for the editor"
    Select "URL" for Style list generation mode. Do not choose "Dynamic" or you will get a style list of garbage.
    Select "File" for Custom XML file, and select FCK.xml you uploaded to the root.
  10. Expand "Editor area CSS"
    Select "URL" for CSS Generator mode. Again, do not select "Dynamic".
    Select "File" for Custom CSS file, and select FCK.css you uploaded to the root.
  11. Confirm "Apply custom settings to: Portal" and click "Apply"
    Close the FCK Editor custom options page and Cancel module editing.
  12. Refresh your browser with Ctl-F5 to force a refresh of the cache.

Now you can edit your module again and look for your nice custom list of styles. See how nicely they format your text when applied. They should match the formatting you see after updating the editor.

If you don't see your styles and the formatting is not right, you might try deleting files in your cache. Also, check for mistakes in FCK.xml, FCK.css and portal.css. They must all be in sync and correct.

Anyone have more suggestions or corrections?

Here is some sample FCK.xml adapted from FCK:

<?xml version="1.0" encoding="utf-8" ?>
<Styles>
 <Style name="Image on Left" element="img">
  <Attribute name="style" value="padding: 5px; margin-right: 5px" />
  <Attribute name="border" value="2" />
  <Attribute name="align" value="left" />
 </Style>
 <Style name="Image on Right" element="img">
  <Attribute name="style" value="padding: 5px; margin-left: 5px" />
  <Attribute name="border" value="2" />
  <Attribute name="align" value="right" />
 </Style>
 <Style name="Title" element="span">
  <Attribute name="class" value="Title" />
 </Style>
 <Style name="Topic" element="span">
  <Attribute name="class" value="Topic" />
 </Style>
 <Style name="Custom Bold" element="span">
  <Attribute name="style" value="font-weight: bold;" />
 </Style>
 <Style name="Custom Italic" element="em" />
 <Style name="Title" element="span">
  <Attribute name="class" value="Title" />
 </Style>
 <Style name="Code" element="span">
  <Attribute name="class" value="Code" />
 </Style>
 <Style name="Heading H1" element="H1" />
 <Style name="Heading H2" element="H2" />
 <Style name="Custom Ruler" element="hr">
  <Attribute name="size" value="1" />
  <Attribute name="color" value="#ff0000" />
 </Style>
</Styles>

 And corresponding FCK.css:

body, td
{
 font-family: Verdana, Sans-Serif;
 font-size: 13px;
}

.Title
{
 font-family: Ariel, sans-serif;
 font-size: 16px;
 font-weight: bold;
 color: red;
}

.Topic {
 font-family: Ariel, sans-serif;
 font-size: 14px;
 font-weight: bold;
 color: red;
 font-style: italic;
}


.Bold
{
 font-weight: bold;
}

H1  {
   font-family: arial, sans-serif;
   font-size: 1.7em;
   font-weight: bold;
   color: #006699;
}

H2  {
   font-family: arial, sans-serif;
   font-size: 1.3em;
   font-weight: bold;
   color: #006699;
}

 
New Post
5/12/2007 9:49 AM
 

Locopon and other people, this thread should be STICKED at the top of the forum !!!

I was looking for a while this solution. Just perfect, thanks ripple.

DV FX

 
New Post
11/4/2007 10:55 AM
 

Great help, thank you Gary!

Perhaps one little improvement to #1 in your list:
Instead of saving (and maintaining) your custom styles twice (in FCK.css and portal.css), you may save them only once in FCK.css and include them into portal.css using the import directive at the top of portal.css:

@import url("FCK.css");
 
New Post
11/20/2007 2:37 AM
 

Gary,

Thanks for your post. Unfortunately these instructions, even when using your exact files, do not work on my installations.

I have tried two seperate DNN 4.7.0 installations without success.

Is there anything else I may be missing? I can see changes occurring in the HostSettings table, but the list of styled in the FCK toolbat never changes.

Am I missing something in web.config?

Kind regards,

DanielB

 
New Post
11/20/2007 3:47 AM
 

Daniel,

  • did you follow exactly the steps above, especially about setting the FCKEditor options from UI?
  • where did you try to set this? I remember, there have been issues to use this for profile properties

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Provider and Extension ForumsProvider and Extension ForumsFCKeditorFCKeditorHow to create a list of custom styles by portal in the FCK EditorHow to create a list of custom styles by portal in the FCK Editor


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out