Been looking and looking, but I can't find what I'm looking for. I need a clean 3 column theme with header/h1 in left sidebar, like this one: h ttp://www.samtext.com/samtext_international_text_agency_460.html (Remove the space between h and t) A theme exactly like that one would be perfect, but it's no biggie to edit one that is similar. Any tip for a theme I can use? Header/h1 _must_ be in the left sidebar.
Well, you could setup your own sidebar, let me provide an example... In functions.php, add this code. if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => __('New left-hand sidebar'), 'id' => 'new-left-bar', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h1>', 'after_title' => '</h1>', )); Code (markup): Save the file, visit your website and then go to your Widgets, you will see a new sidebar. Then edit your theme's sidebar.php to include the new sidebar (where your current left sidebar is) with this code: get_sidebar('new-left-bar'); Code (markup): Hope this helps.