I have a CSS question, On my website www.frontarticle.com I would like to move the search option to the right a bit and get ride of the empty sidebar. Any suggestions on how that can be done. Any help would be greatly appreciated.
Is there a theme option that lets you select one or two sidebars? If not, edit the theme stylesheet (style.css): 1. Change width of #wrapper to 776px; 2. Change width of aside to 225px; #wrapper { [COLOR="red"]width: 776px;[/COLOR] margin: 0 auto; padding: 0 10px 10px; border-top: 5px solid #EEE; border-left: 1px solid #DDD; border-right: 1px solid #DDD; background: #FFF; } aside { float: right; [COLOR="red"]width: 255px;[/COLOR] font-size: 11px; line-height: 16px; padding: 3px 0 0; } Code (markup): Didn't test it in all browsers, so you may have to increase those values a bit.