Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9265871
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T14:11:02+00:00 2026-06-18T14:11:02+00:00

Can the Aloha Editor be configured so that it shows only bold, italic and

  • 0

Can the Aloha Editor be configured so that it shows only bold, italic and underline buttons and so that the overall toolbar is then no bigger than it needs to be?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T14:11:03+00:00Added an answer on June 18, 2026 at 2:11 pm

    Yes, to customise the toolbar take a look at the configuration settings:

    http://aloha-editor.org/guides/ui.html#configuration

    And if you check the demo-app on GitHub there is a config file begin used where you can add this settings.

    https://github.com/alohaeditor/Aloha-Editor/blob/dev/src/demo/demo-app/app/js/demo-app-load.js

    There is also an alternative for this that you can check on the source code of demo/3col at:

    http://aloha-editor.org/demos/3col/

    <script>
        var Aloha = window.Aloha || ( window.Aloha = {} );
    
        Aloha.settings = {
            locale: 'en',
            plugins: {
                format: {
                    config: [  'b', 'i', 'p', 'sub', 'sup', 'del', 'title', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'pre', 'removeFormat' ],
                    editables : {
                        // no formatting allowed for title
                        '#title'    : [ ]
                    }
                },
                link: {
                    editables : {
                        // No links in the title.
                        '#title'    : [  ]
                    }
                },
                list: {
                    editables : {
                        // No lists in the title.
                        '#title'    : [  ]
                    }
                },
                abbr: {
                    editables : {
                        // No abbr in the title.
                        '#title'    : [  ]
                    }
                },
                image: {
                    'fixedAspectRatio': true,
                    'maxWidth': 1024,
                    'minWidth': 10,
                    'maxHeight': 786,
                    'minHeight': 10,
                    'globalselector': '.global',
                    'ui': {
                        'oneTab': false
                    },
                    editables : {
                        // No images in the title.
                        '#title'    : [  ]
                    }
                }
            },
            sidebar: {
                disabled: true
            },
            contentHandler: {
                allows: {
                    elements: [
                        'a', 'abbr', 'b', 'blockquote', 'br', 'caption', 'cite', 'code', 'col',
                        'colgroup', 'dd', 'del', 'dl', 'dt', 'em', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6',
                        'i', 'img', 'li', 'ol', 'p', 'pre', 'q', 'small', 'strike', 'strong',
                        'sub', 'sup', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'tr', 'u',
                        'ul', 'span', 'hr', 'object', 'div'
                    ],
    
                    attributes: {
                        'a': ['href', 'title', 'id', 'class', 'target', 'data-gentics-aloha-repository', 'data-gentics-aloha-object-id'],
                        'div': [ 'id', 'class'],
                        'abbr': ['title'],
                        'blockquote': ['cite'],
                        'br': ['class'],
                        'col': ['span', 'width'],
                        'colgroup': ['span', 'width'],
                        'img': ['align', 'alt', 'height', 'src', 'title', 'width', 'class'],
                        'ol': ['start', 'type'],
                        'q': ['cite'],
                        'p': ['class'],
                        'table': ['summary', 'width'],
                        'td': ['abbr', 'axis', 'colspan', 'rowspan', 'width'],
                        'th': ['abbr', 'axis', 'colspan', 'rowspan', 'scope', 'width'],
                        'ul': ['type'],
                        'span': ['class','style','lang','xml:lang']
                    },
    
                    protocols: {
                        'a': {'href': ['ftp', 'http', 'https', 'mailto', '__relative__']},
                        'blockquote': {'cite': ['http', 'https', '__relative__']},
                        'img': {'src' : ['http', 'https', '__relative__']},
                        'q': {'cite': ['http', 'https', '__relative__']}
                    }
                }
            }
        };
    </script>
    
    <script type="text/javascript" src="http://cdn.aloha-editor.org/latest/lib/aloha.js"
                data-aloha-plugins="common/ui,
                                    common/format,
                                    common/table,
                                    common/list,
                                    common/link,
                                    common/highlighteditables,
                                    common/block,
                                    common/undo,
                                    common/image,
                                    common/contenthandler,
                                    common/paste,
                                    common/commands,
                                    common/abbr"></script>
    
    <!-- turn an element into editable Aloha continuous text -->
    <script type="text/javascript">
    Aloha.ready(function() {
        $('#title').aloha();
        $('#multicolumnElement').aloha();
    });
    
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I use Membership.GeneratePassword to return a password that ONLY contains alpha or
Accoriding to the Aloha Editor docs you can listen for the aloha-smart-content-changed event for
I tried to install aloha editor for my webservice, and that turned into 2
I'm looking for a regular expression that can find the alpha representation of a
I hope someone can help us. We’re trying to put together an image editor,
I have input[type=text] where user can type only alpha, space and comma. I need
Aloha, I have a custom control that I need to instantiate from within a
Is there a way such that I can set the alpha of a UILabel,
Aloha everyone, I have another question. I have a SYDI script that retrieves WMI
Aloha! I have a role that I'm busy defining in a Moose class called

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.