You’re welcome ??
You can add an image to the text widget using HTML like this:
<img src="https://website.com/image.png" />
Copy that and replace the “src” value with the URL to the image. By default, it will display above or below the paragraph text. You can place it to the left by including the image first in the widget, and updating it like this:
<img src="https://website.com/image.png" style="float:left;" />
An alternative would be to use the Image Widget plugin. You could use the description section for the text and that might work pretty well.
This CSS can be used to add a background and border around the text widget:
.widget_text {
background: #f5f5f5;
border: #e5e5e5;
}
And this alternative will only put it around the text in the widget (excluding the title):
.textwidget {
background: #f5f5f5;
border: #e5e5e5;
}