Without being able to actually see the blog, it’s extremely hard to say where you went wrong. A picture of the thing is nice and all, but the actual *code* on the page is far more useful.
I took a look at the Coffee Cup theme and it appears to use standard UL/LI’s for the sidebar, so I don’t really know how you could have went wrong there. And without looking at the blog itself or the code you used in the sidebar.php, there’s no way to figure it out.
The site is http://www.hlcmarketingcorner.com. The site is passworded and I set up a temp account.
Login: temp
pass:temp
And as far as the code itself, I just added the code that was suggested in the widget tutorial on automattic’s page)
I can’t get in with that username/password combo.
Sorry was test:test
I got a bit ahead of myself and mistyped
Ahh. Okay, I think I see what the deal is. Let me guess… in your functions.php, you used this code:
<?php
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => '',
'after_widget' => '',
'before_title' => '<div class="title">',
'after_title' => '</div>',
));
?>
Right?
Try changing that to this:
<?php
if ( function_exists('register_sidebar') )
register_sidebar();
?>
That first bit of code is for use where your sidebar isn’t an unordered list. However, the Coffee Cup theme’s sidebar *is* an unordered list, with CSS to match. So the normal register_sidebar() code should work without modification.
Right on the Money. No other words. Thank YOU. Just saved me a ton of time. Like Fiesta? (www.hlchina.com) Heh I’d send you a set for helping on this.