May 14, 2020 5:37 pm
Hi
The image upload icon looks a little lost over to right, do you have the css to make it larger, color it, and/or stop it floating right.
Thanks
Brian
2 Replies
May 14, 2020 5:46 pm
Hi @wills1,
You can use this CSS code to make it bigger and change the color. Put this CSS code in Dashboard > wpDiscuz > Settings > Styles and Colors > Custom CSS Code textarea. Save it, delete all caches, go to website front-end and press Ctrl+F5 to reset browser cache:
#wpdcom .ql-toolbar .wmu-upload-wrap .wmu-add i {
font-size: 25px;
color: #1998c9;
margin-top: -3px;
}
You can change the color, by changing the color #1998c9; code to whatever you want. Here is the color picker: https://www.google.com/search?q=online+color+picker
May 14, 2020 6:06 pm
Thanks Tom, that works perfectly 😉