I may have solved my problem by reading through lots of posts in the forum as well as using Bing Copilot. I started with Styling the Bubble Rich Text Editor - Please halp posted in Oct 2023 where @ian11 was also trying to customize the styling of the RTE. From there I scrolled through the original plugin announcement of the RTE Plugin Announcement: Rich Text Editor and then turned to Bing Copilot. I needed to eliminate the font picker, the H1-H4 buttons, the strikethrough button, and the link button. This style snippet in the HTML header of the page where I was using Bubble’s RTE multiple times did the trick.
<style>
/* Hide all pickers */
.ql-snow .ql-picker {
display: none;
visibility: hidden;
}
/* Hide the strikethrough button */
.ql-toolbar .ql-strike {
display: none;
visibility: hidden;
}
/* Hide the fourth child element in .ql-formats - H1-H4 buttons */
.ql-formats:nth-child(4) {
display: none;
visibility: hidden;
}
/* Hide the link button */
.ql-toolbar .ql-link {
display: none;
visibility: hidden;
}
</style>
If you end up reading this post and see “gotchas” that I have missed, I will greatly appreciate feedback.