To find the Text module, Please go to “Pages > Add New”, click “BM Content Builder”


Add paragraph and heading with the Text module.

There is a 3rd party WYSIWYG editor within the Text module. You could set up the “Font color/background-color”, “Font Size/Line height/letter-spacing”, “Container Height” and other options with the editor.
Notice – 12/15/2020 – For compatibility with WordPress 5.6, we have to remove the Font size mobile, Line height, letter-spacing selectors. We are studying for a new solution to solve it
Font color

Font size

The default font size unit is PX, you could use unit VW, it would be more flexible. e.g.

Check how to set a font size:
Font size for mobile
The text will be shown as the default font size set in the BM Font(BM Fonts Management > Fonts Assignment > Posts & Pages > Content). If you select a font size in the editor, the default font size for both desktop and mobile will be covered. You should select a font size for mobile also normally. Please use the inline-style --font-size-m
by the code view. If you want to set 24px for the h1 tag, please add --font-size-m:24px;
to the span tag:
<h1><span style="font-size: 48px; --font-size-m:24px;">This is a Headding</span></h1>
PS: Maybe you see the data-msize="xx"
in the span tag, It is the old value. We suggest you use --font-size-m
instead of data-msize
.
Add link
To add link for selected text:

To add a link for downloading a file like PDF or Zip file. Please add the word “Download” in code mode. It should be:
<a href="the-url.zip" download>click to donwload</a>
Code mode
Click this button it will turn to code mode:

Container Height
The Text module could be set a height fluid value(screen height) or fixed value. The content in the Text module would be vertical centering if it is set a height value.
Background color/image/video, mask text
The Text module supports color, image and video background.
Background: Color

Please click “Select Color” to pickup a color for the Group.
Background: Image

Please click “Add new image” to select an image.
Masked Text
You could create a mask text effect By “Effect: Mask”.

Check the video tutorial how to create the masked text:
Background: Hosted Video

Please enter the different format video file URL for the 3 inputs, the URL should be like:
https://xxx.com/xxx.mp4
https://xxx.com/xxx.wemb
https://xxx.com/xxx.ogg
You could use some online tools to convert the video file like Cloudconvert, Zamzar.com. It does not support the 3rd embed code like Youtube.
Shortcode
The text editor supports the shortcode, if you want to show a map, you could use the WP Google Maps plugin. Add the map through Maps > Maps, enter the shortcode like:

ID Name

The ID name could be available in all types of modules. It could be set as the anchor.
The ID name must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens (“-“), underscores (“_”), colons (“:”), and periods (“.”). Check more
Notice – 12/15/2020 – For compatibility with WordPress 5.6, we have to remove the Font size mobile, Line height, letter-spacing selectors. We are studying for a new solution to solve it