You can specify that a particular style should be used when you press Enter at the end of the current style. For example, after you type text for a heading and press Enter, you might want the next style to be something like p.TopicText, rather than the main <p> tag.
In this version of Flare, you cannot specify this setting in the user interface. Instead, you need to open the style sheet in an editor such as Notepad and enter the settings manually.
How to set a "next" style
and select Notepad. Within the curly brackets in the CSS file, enter the following text if the next style is a primary tag (e.g., <p>, <li>).
mc-next-tag:[tag];
OR
Within the curly brackets, enter the following text if the next style is a class.
mc-next-tag:[tag];
mc-next-class:[class];
example
If the current tag is <h2> and the next style should be <p>, it would look like this:
On the other hand, if the current tag is <h2> and the next style should be a class of <p> called "TopicText," you would enter this.