• I need to shrink the left sidebar and am unsure how to do it. If I could make it go away all together, that’d be great. I also have a green dotted line border on the left side that I can’t get rid of.

    site is: https://intheknowmom.net

Viewing 3 replies - 1 through 3 (of 3 total)
  • I believe that the green dotted border is an image
    https://intheknowmom.net/wp-content/themes/green-apples/images/right-col.gif

    The code you want to change is in your style.css.

    Change

    body {
    	font-size: 72%; /* Resets 1em to 10px */
    	font-family: 'georgia',Arial,sans-serif;
    	background: #ffffff url(images/right-col.gif) right repeat-y;
    	color: #333333;
    	}

    to

    body {
    	font-size: 72%; /* Resets 1em to 10px */
    	font-family: 'georgia',Arial,sans-serif;
    	background: #ffffff;
    	color: #333333;
    	}

    Looks like the sidebar on the left is called #sidebar and the one on the right is called sidebar2, so in your CSS you can set

    #sidebar {display:none;}

    But you should check to see if there is an option to use only one sidebar first. This theme is a three column theme after all.

    Thread Starter intheknowmom

    (@intheknowmom)

    ah! And the gren line is gone. Thank you!

    Alwyn Botha

    (@123milliseconds)

    Please mark thread as resolved so that

    – others with similar problem can see it as resolved and will read this thread for help if they have similar problem

    – people providing help see it as resolved and will not waste time reading this post.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Shrink (or make disappear) left sidebar’ is closed to new replies.