Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey BeIM !

    I don’t think the whitespace color can be a PHP problem it’s simply some css and you can get it back with the following :

    in style.css search for

    #site-container {
        margin: 0 auto;
        max-width: 1200px;
        padding: 0 30px;
    }

    and add background:#FFF; which makes it look like :

    #site-container {
        margin: 0 auto;
        max-width: 1200px;
        padding: 0 30px;
        background: #FFF;
    }

    if you need anything else just ask ??

    Cheers !

    Thread Starter BelM

    (@belm)

    Thanks codeManiac figured that out for the blog/post page but I don’t think thats the issue for the gallery page https://www.surfphotosofyou.com.au/spoy-galleries/2016-calendars/ because the gallery is sitting outside above the heading and container. I am not sure the best way to fix this.

    BeIM try this :
    look for

    #ht-gallery-grid {
        margin: 0 30px;
    
    }

    and add background to make it look like

    #ht-gallery-grid {
        margin: 0 30px;
        background: #FFF;
    }

    I think this will solve it ??

    Cheers !

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Update on website caused problems to template’ is closed to new replies.