• Resolved Ebonyjo58

    (@ebonyjo58)


    I have the Yoko them by Elmastudio. I want the background to be an image/pattern that I have. When I change the background it only changes the border of my pages. The interior of my pages is still a white background. Is there a way to make this interior a color or image? I strictly have a website not a blog. I’ve disabled all comments, replies etc. Help!! Also I do not know html. But I do know how to cut and paste. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator cubecolour

    (@numeeja)

    don’t bump it’s not allowed – it makes it look as if your question has been answered.
    the background changing option is behaving correctly. You will need to edit the css of your stylesheet, however for a volunteer to be able to tell you whatnot need to edit, you should post a link to your site so we can see how the page is marked up.

    Moderator cubecolour

    (@numeeja)

    I’ve found the live demo for Yoko on the dev’s site

    I think what you need is to edit the stylesheet style.css & find:

    #page {
    	max-width: 1102px;
    	margin: 12px auto;
    	padding:0 30px 30px;
    	background-color:#fff;
    	z-index: 0;
    }

    & comment out the background-color line with a double slash to ignore that line & make the #page div transparent allowing the background you set to show through:

    #page {
    	max-width: 1102px;
    	margin: 12px auto;
    	padding:0 30px 30px;
    //	background-color:#fff;
    	z-index: 0;
    }

    Thread Starter Ebonyjo58

    (@ebonyjo58)

    Thank you so much cubecolour!!! And thanks for the rule about bumping

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Yoko background’ is closed to new replies.