Hi,
Thought I’d throw out another point of view. This is assuming you have some XHTML/CSS knowledge.
I add images and text to sidebars all the time, by editing the sidebar.php, and haven’t had any display issues.
What you might look at is how your sidebar function, <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
is displayed in your sidebar.php. If it’s wrapped in its own <div id>
, <div class>
, or <ul>
, you need to add the image outside the <div>s
or <ul>
, either before or after, to have it display without conflict.
You can wrap the image in its own <div class>
or <img class>
as well, to properly position the image within the sidebar using your style.css.
I use widgets all the time, but have never considered using one to insert an image or simple text. However, that being said, it may be the easiest way for someone in a hurry or just starting out. Nothing wrong with that. It might be confining, though, if you progress into multiple images or more complex layouts.