CSS Question/Sidebar issue

Discussion in 'CSS' started by soniqhost.com, Jan 26, 2011.

  1. #1
    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.
     
    soniqhost.com, Jan 26, 2011 IP
  2. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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.
     
    Last edited: Jan 28, 2011
    Cash Nebula, Jan 28, 2011 IP