• Hi,

    I have amended a page in my site by removing the sidebar. I’ve also managed to amend the width of the central column to stretch to the full width of the page.

    However I cannot work out how to remove a vertical line which appears to be an image from the right hand side of the page which formed the left side separator of the sidebar.

    Here is the page.

    Can anyone help?

Viewing 4 replies - 1 through 4 (of 4 total)
  • open your theme’s style.css (Design > Theme Editor > style.css) and edit the following code.

    find (on line 84)

    #page {
    	background:#fff url(images/pagebg.gif) top left repeat-y;
    	width:940px;
    	padding: 0px 20px;
    	margin:0 auto;
    	border:1px solid #eee;
            border-top:0;
    	}

    replace with

    #page {
    	background: #fff url(images/pagebg.gif) repeat-y -506px 0px scroll;
    	width: 940px;
    	padding: 0px 20px;
    	margin: 0px auto;
    	border: 1px solid #eee;
    	border-top:0pt none
    	}

    Thread Starter algorithmbetting

    (@algorithmbetting)

    thank you very much for a very straight and perfect answer!!

    cheers [resolved]

    Thread Starter algorithmbetting

    (@algorithmbetting)

    and do you know how i now remove the left line as well! ive tried making changes myself but cannot seem to differentiate in the css file between the main page and the page2 i created for the and funds pages.

    thanks,

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Template border image removal’ is closed to new replies.