Myr Posted July 1, 2020 Posted July 1, 2020 Can we get the Page Builder: Text Widget with the rich text editor or can we get the WYSIWYG Widget with the advanced settings of the Page Builder: Text? It feels awfully odd to get a text box where you can't edit anything about the text and call it a Page Builder: Text. What is the use case for that? SC36DC, AlexJ, Kpp and 3 others 6
Myr Posted July 6, 2020 Author Posted July 6, 2020 2 hours ago, bfarber said: As a random example..... Okay 🙂 any chance of getting a more versatile option for those of us that desire them? And yes, I know I can fuss around with code, but that's time consuming for those of us that don't do it day in and day out. 🙂 SC36DC 1
Davyc Posted July 7, 2020 Posted July 7, 2020 I love the new text box as it allows you to get creative. Yes, you need to have a grasp of HTML and CSS but it's really not that difficult and there are loads of generators online to help you get the look you want. I created a simple box with a welcome message inside - this: The HTML part is: <div class="box">Welcome to Movie Buffs</div> And the CSS part is: .box { font-family: Tahoma, Geneva, sans-serif; text-align: center; font-size: 36px; color: #FFF; font-weight: bold; line-height: 100px; background: rgb(103,9,121); background: radial-gradient(circle, rgba(103,9,121,1) 0%, rgba(61,91,175,1) 47%, rgba(103,9,121,1) 100%, rgba(0,212,255,1) 100%); } The CSS goes into the Advance section below what is already there. I also removed all of the padding using the drop down controls. It's a really nice way to get creative. jackflash 1
jackflash Posted July 7, 2020 Posted July 7, 2020 59 minutes ago, Davyc said: I love the new text box as it allows you to get creative. Yes, you need to have a grasp of HTML and CSS but it's really not that difficult and there are loads of generators online to help you get the look you want. I created a simple box with a welcome message inside - this: The HTML part is: <div class="box">Welcome to Movie Buffs</div> And the CSS part is: .box { font-family: Tahoma, Geneva, sans-serif; text-align: center; font-size: 36px; color: #FFF; font-weight: bold; line-height: 100px; background: rgb(103,9,121); background: radial-gradient(circle, rgba(103,9,121,1) 0%, rgba(61,91,175,1) 47%, rgba(103,9,121,1) 100%, rgba(0,212,255,1) 100%); } The CSS goes into the Advance section below what is already there. I also removed all of the padding using the drop down controls. It's a really nice way to get creative. Thanks for sharing On 7/1/2020 at 1:51 PM, Myr said: Can we get the Page Builder: Text Widget with the rich text editor or can we get the WYSIWYG Widget with the advanced settings of the Page Builder: Text? It feels awfully odd to get a text box where you can't edit anything about the text and call it a Page Builder: Text. What is the use case for that? Don't see why in 2020 everything that can utilize WYSIWYG doesn't utilize it. Make it simple and easy to use.
Davyc Posted July 7, 2020 Posted July 7, 2020 That option exists with WYSIWYG rich text editor option in the Pages list of options - the problem with the WYSIWYG is that you don't have the finite control that you have with the text box as it is limited in scope; the text box removes those limitations, but with a caveat - you need to understand code. It's really not difficult once you grasp the basics and the more you learn the more creative you can become. I can understand your frustration - but turning it into a WYSIWYG edit would just be a duplication of what's already there. I doubt very much that the advanced options can be applied to the WYSIWYG as it is based around the CKEditor and that doesn't have the options you're looking for, unless there are additional plugins that will allow more control. I would say that was the whole point of creating the text box so that more finite control could be exercised that the WYSIWYG could not provide for. 🙂 Joel R 1
Myr Posted July 10, 2020 Author Posted July 10, 2020 On 7/7/2020 at 1:39 PM, Davyc said: I can understand your frustration - but turning it into a WYSIWYG edit would just be a duplication of what's already there. I doubt very much that the advanced options can be applied to the WYSIWYG as it is based around the CKEditor and that doesn't have the options you're looking for, unless there are additional plugins that will allow more control. I would say that was the whole point of creating the text box so that more finite control could be exercised that the WYSIWYG could not provide for. It looks to me like you can stick the content into a container or not. From a coding standpoint, it's adding a <div> around the RTE content, presumably. I know coding directly gives you plenty of control. Great! if you like that, more power to you. With my limited available free time, I'd rather be creating content, not formatting it. At least not in code that typos, which I have a lot of, causes messes you have to figure out. What I am asking for is not a zero sum game. You can get your pretty box, I can get mine and we're both happy 🙂
Recommended Posts