Here's a screen capture worth a thousand words: http://i.imgur.com/nwT9p.png.

How do I go about styling how the headings display within the BUEditor dropdown when a user clicks the "Headings" button? Been messing around with css, but cannot figure out where that styling is coming from.

Thanks!

Comments

ufku’s picture

E.tagChooser() applies the tags to the given strings by default. It can be prevented by defining a second parameter(options).

js: E.tagChooser([
 ['h1', 'Heading1'],
 ['h2', 'Heading2'],
 ['h3', 'Heading3'],
 ['h4', 'Heading4'],
 ['h5', 'Heading5'],
 ['h6', 'Heading6']
], {applyTag: false});
jordanmagnuson’s picture

Status: Active » Closed (works as designed)

Thanks!