Viewing 3 replies - 1 through 3 (of 3 total)
  • That is going to be a tough one without an actual link to your site. I think the folks who know how to do that sort of thing may need to take a peek at your source code to give you a specific answer.

    A generic answer would be to decrease the left margin and-or change the width on the blue bar, and do the same thing to the right margin and-or width on the green bar. Without being able to see the style sheet for those items, it’s only a shot in the dark I think.

    Thread Starter jakczuhang

    (@jakczuhang)

    I have tried changing the width of both blue and green but they only seem to extend towards the middle but not the outside.

    Here’s the style sheet. If anybody can pinpoint the exact line that needs to be changed that would be great.

    Thanks!

    /* Top Elements */
    * { margin: 0; padding: 0; outline: 0 }
    
    body {
    	font: 12px/165% 'Lucida Grande', Geneva, Verdana, Arial, Helvetica, sans-serif;
    	color: #FFFFFF;
    	margin: 0; 	padding: 0;
    	background: #080808 url(images/bg.jpg) no-repeat center top;
    	text-align: center;
    }
    
    /* Links */
    a, a:active, a:link {
    	text-decoration: none;
    	color: #01b0f0;
    }
    a:visited {
    	text-decoration: none;
    }
    a:hover {
    	color: #01b0f0;
    	border-bottom: 1px dotted #505050;
    }
    
    /* headers */
    h1, h2, h3 {
    	font-family: 'Trebuchet MS', Tahoma, Arial, Sans-serif;
    	color: #ABABAB;
    }
    h1 {
    	font-size: 3.3em;
    	font-weight: normal;
    	letter-spacing: -2px;
    	padding: 15px 10px 5px 10px;
    }
    h2 {
    	font-size: 2em;
    	color: #895F30;
    	padding: 20px 10px 5px 10px;
    }
    h3 {
    	font-size: 1.7em;
    	font-weight: normal;
    	padding: 20px 10px 5px 10px;
    }
    
    p, dl { padding: 10px; margin: 0; }
    
    ul, ol {
    	margin: 10px 20px;
    	padding: 0 20px;
    }
    ul { list-style: none; }
    
    dt {
      font-weight: bold;
      color: #fff;
    }
    dd {
      padding-left: 25px;
    }
    
    /* images */
    img {
    	background: #181818;
       border: 1px solid #181818;
    	padding: 5px;
    }
    img.float-right {
      	margin: 5px 0px 10px 10px;
    }
    img.float-left {
      	margin: 5px 10px 10px 0px;
    }
    
    code {
      	margin: 5px 0;
      	padding: 15px;
      	text-align: left;
      	display: block;
      	overflow: auto;
      	font: 500 1em/1.5em 'Lucida Console', 'Courier New', Monospace ;
      	/* white-space: pre; */
      	background: #181818;
    }
    acronym {
      	cursor: help;
      	border-bottom: 1px dotted #5B5B5B;
    }
    blockquote {
    	margin: 15px 10px;
     	padding: 10px 10px 10px 35px;
       background: #181818 url(images/quote.jpg) no-repeat 10px 10px;
    	font-weight: normal;
    	font-size: 18px;
    	line-height: 1.6em;
    	font-style: italic;
    	font-family: Georgia, 'Times New Roman', Times, serif;
    	color: #808080;
    }
    
    /* start - table */
    table {
    	margin: 15px 10px;
    	border-collapse: collapse;
    }
    th {
    	background: #000;
    	color: #fff;
    	height: 38px;
    	padding-left: 12px;
    	padding-right: 12px;
    	text-align: left;
    	border-left: 1px solid #211E20;
    	border-right: 1px solid #211E20;
    	border-bottom: 1px solid #211E20;
    	border-top: 1px solid #48780E;
    }
    tr {
    	color: #5b5b5b;
    	height: 34px;
    }
    td {
    	padding-left: 12px;
    	padding-right: 12px;
    	border: 1px solid #181818;
    }
    /* end - table */
    
    /* form elements */
    form {
    	margin: 20px 10px; padding: 5px 10px 20px 10px;
    	border: 1px solid #181818;
    	background: #080808;
    }
    label {
    	display: block;
    	font-weight: bold;
    	margin: 8px 0;
    	color: #fff;
    }
    input, select, textarea {
    	padding: 5px 4px;
    	font: normal 1em Verdana, Tahoma, sans-serif;
    	color: #ffffff;
    	background: #121212;
    	border: 1px solid #121212;
    }
    textarea {
    	width: 400px;
    	height: 100px;
    	display: block;
    }
    input.button {
    	font: bold 12px Arial, Sans-serif;
    	height: 30px;
    	margin: 0;
    	padding: 2px 3px;
    	color: #48780E;
    	background: #000;
    
    	border-width: 1px;
      	border-style: solid;
      	border-color: #121212;
    }
    
    /* search form */
    .searchform {
    	background-color: transparent;
    	border: none;
    	margin: 0; padding: 20px 0 15px 8px;
    	width: 270px;
    }
    .searchform p { margin: 0; padding: 0 0 10px 0; }
    .searchform input.textbox {
    	width: 185px;
    	height: 18px;
    	padding: 2px;
    	vertical-align: top;
    }
    .searchform input.button {
    	width: 60px;
    	height: 24px;
    	padding: 2px 5px;
    	vertical-align: top;
    }
    
    /* ------------------------------------------
       LAYOUT
    ------------------------------------------- */
    #wrap {
    	position: relative;
    	width: 900px;
    	margin: 0 auto;
    	text-align: left;
    }
    #content-wrap {
    	position: relative;
    	clear: both;
    	width: 900px;
    	padding: 0;
    	margin-left: 5px;
    	background: transparent;
    	float: left;
    	display: inline;
    	border-top: 1px solid #080808;
    }
    #header {
    	position: relative;
    	width: 900px;
    	height: 180px;
    	margin: 0; padding: 0;
    	background: transparent;
    }
    
    /* header search */
    #header form#quick-search {
    	position: absolute;
    	top: 11px; right: 0;
    	padding: 0; margin: 0;
    	border: none;
    	width: 262px; height: 30px;
    	background: url(images/header-search.jpg) no-repeat;
    	z-index: ababab;
    }
    #header form#quick-search p {
    	margin: 0; padding: 0;
    }
    #header form#quick-search .tbox {
    	margin: 2px 0 0 5px;
    	width: 210px;
    	background: none;
    	border: none;
    }
    #header form#quick-search label,
    #header form#quick-search .btn {
    	display: none;
    }
    
    /*  Navigation  */
    #nav {
    	position: absolute;
    	margin: 0; padding: 0;
    	height: 40px;
    	width: 900px;
    	left: 0;	top: 10px;
    	border-bottom: 1px solid #080808;
    }
    #nav ul {
    	float: left;
    	list-style: none;
    	width: 880px;
    	height: 40px;
    	margin: 0 0 0 5px; padding: 0;
    	display: inline;
    }
    #nav ul li {
    	display: inline;
    	margin: 0; padding: 0;
    }
    #nav ul li a {
    	float: left;
    	margin: 0;	padding: 0 8px;
    	font: bold 15px/32px 'Trebuchet MS', Helvetica, Arial, Geneva, sans-serif;
    	text-decoration: none;
    	color: #ffffff;
    }
    #nav ul li a:hover,
    #nav ul li a:active {
    	color: #01b0f0;
    	background: none;
    	border: none;
    }
    #nav ul li.current_page_item a {
    	color: #ffffff;
    }
    
    #header h1#logo-text a {
    	position: absolute;
    	margin: 0; padding: 0;
    	font: normal 0px 'Trebuchet MS', Helvetica, Arial, Geneva, sans-serif;
    	letter-spacing: -1.5px;
    	color: #fff;
    	text-decoration: none;
    
    	/* change the values of top and left to adjust the position of the logo*/
    	top: 140px; left: 40px;	
    
    }
    #header h1#logo-text a:hover {
    	background: none;	border: none;
    }
    #header p#intro {
    	position: absolute;
    	margin: 0; padding: 0;
    	font-family: Georgia, 'Times New Roman', Times, serif;
    	font-weight: normal;
    	font-size: 0px;
    	line-height: 1.6em;
    	font-style: italic;
    	text-transform: none;
    	color: #cd9857;
    	width: 400px;
    
    	/* change the values of top and left to adjust the position */
    	top: 245px; left: 15px;
    }
    
    /* Main Column */
    #main {
    	float: left;
    	width: 620px;
    	padding: 0; margin: 0;
    	display: inline;
    }
    #main h2 {
    	padding-bottom: 3px;
    	margin-top: 15px;
    	font: normal 3.4em 'Trebuchet MS', Tahoma, Helvetica, Arial, sans-serif;
    	color: #fff;
    	letter-spacing: -2px;
    	text-transform: none;
    }
    #main h2 a {
    	color: #aeee00;
            font-size: 32px;
    	text-decoration: none;
    	border: none;
    }
    #main ul li {
    	list-style-image: url(bullet.gif);
    }
    
    /* Sidebar */
    #sidebar {
    	float: right;
    	width: 251px;
    	padding: 0; margin: 25px 0 0 0;
    	display: inline;
    }
    #sidebar h3 {
    	margin-top: 10px;
    	padding: 15px 5px 10px 5px;
    	font: normal 1.8em 'Trebuchet MS', Tahoma, Helvetica, Arial, sans-serif;
    	background: url(images/footer-top.jpg) no-repeat center bottom;
    	color: #01b0f0;
            font-size: 20px;
    }
    #sidebar ul {
    	text-align: left;
    	margin: 7px 5px 8px 0px; padding: 0;
    }
    #sidebar ul li {
    	list-style: none;
    	padding: 8px 10px;
    	margin: 0;
    	border-bottom: 1px solid #181818;
    }
    * html body #sidebar ul li {
    	height: 1%;
    }
    #sidebar ul li a {
    	text-decoration: none;
    	border: none;
    	color: #ababab;
    
    	font-weight: bold;
    	font-family: 'Trebuchet MS', Tahoma, Helvetica, Arial, Sans-serif;
    	font-size: 14px;
    	/* letter-spacing: .5px;  */
    }
    #sidebar ul li a span {
    	color: #505050;
    	font-family: Georgia, 'Times New Roman', Times, serif;
    	font-style: italic;
    	font-weight: normal;
    	font-size: 11px;
    }
    #sidebar ul li a:hover,
    #sidebar ul li a:hover span {
    	color: #fff;
    }
    #sidebar ul ul { margin: 0 0 0 5px; padding: 0; }
    #sidebar ul ul li { border: none; }
    
    /* footer */
    #footer-wrap {
    	position: relative;
    	clear: both;
    	padding: 1em 0 2.5em 0;
    	margin-top: 30px;
    	font: normal 1em 'Trebuchet MS', Tahoma, sans-serif;
    	background: #121212 url(images/footer-top.jpg) no-repeat center top;
    	color: #555;
    	width: 900px;
    	float: left;
    	display: inline;
    	border-bottom: 50px solid #080808;
    }
    #footer-wrap h3 {
    	font: normal 1.6em/1.6em 'Trebuchet MS', Tahoma, sans-serif;
    	color: #ABABAB;
    }
    #footer-content {
    	margin: 0 auto;
    	width: 880px;
    	text-align: left;
    }
    #footer-content ul.col-list {
    	border-top: 1px solid #181818;
    	list-style: none;
    	margin: 5px 0 0 5px; padding: 0;
    	width: 98%;
    }
    #footer-content ul.col-list li {
    	border-bottom: 1px solid #181818;
    }
    #footer-content ul.col-list li a {
    	display: block;
    	line-height: 2em;
    	font-weight: bold;
    	padding: 4px 0 4px 8px;
    	width: 98%;
    	color: #555;
    	border: none;
    }
    #footer-content ul.col-list li a span {
    	color: #505050;
    	font-style: italic;
    	font-weight: normal;
    	font-family: Georgia, 'Times New Roman', Times, serif;
    }
    #footer-content ul.col-list li a:hover,
    #footer-content ul.col-list li a:hover span {
    	color: #fff;
    	text-decoration: none;
    }
    
    #footer-content .col {
    	width: 280px;
    	padding: 0 0 30px 0;
    	display: inline;
    }
    #footer-content .col2 {
    	width: 285px;
    	padding: 0 0 30px 0;
    	display: inline;
    }
    #footer-content .space-sep {
    	margin-right: 12px;
    }
    
    /* postmeta */
    .postmeta {
    	padding: 7px 5px; margin: 20px 10px 15px 10px;
    	font-size: 1em;
    	color: #545454;
    	border: 1px solid #181818;
    	background: #181818;
    }
    .postmeta .date{ margin: 0 10px 0 5px;	}
    .postmeta a.comments { margin: 0 10px 0 5px;	}
    .postmeta a.readmore { margin: 0 10px 0 5px;	}
    
    .post-info { font-size: .95em; padding-top: 3px; margin-left: 5px; color: #505050;	}
    .post-info a { color: #ff358b; }
    
    /* alignment classes */
    .float-left  { float: left; }
    .float-right { float: right; }
    .align-left  { text-align: left; }
    .align-right { text-align: right; }
    
    /* display and additional classes */
    .clearer { clear: both; }
    
    .clear {
    	display:inline-block;
    }
    .clear:after {
    	display:block;
    	visibility:hidden;
    	clear:both;
    	height:0;
    	content: ".";
    }
    Thread Starter jakczuhang

    (@jakczuhang)

    I got it now. I just changed the wrap and content wrap variables 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Extend Column size towards one direction?’ is closed to new replies.