Background Picture Edge Location Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
2 posters

    Background Picture Edge Location

    avatar
    Cineworks
    New Member


    Posts : 12
    Reputation : 1
    Language : English

    In progress Background Picture Edge Location

    Post by Cineworks March 31st 2015, 1:31 am

    Technical Details


    Forum version : phpBB2
    Position : Member
    Concerned browser(s) : Google Chrome
    Screenshot of problem : Background Picture Edge Location Forum%20screenshot_zpsrs7g69ip
    Who the problem concerns : Yourself
    When the problem appeared : During creation
    Forum link : http://atgo.forumotion.com

    Description of problem

    Hi all,

    I'm using the MG Black Green Skin from Hitskin.
    I've uploaded a background picture image to fill the right and left borders. The image is wider than the border, which it fills. The left border works fine. The image fills the border from right to left and tiles vertically without being noticed. But the image edge is directly in the middle of the right border. I've uploaded several sizes of background image, but the edge seems to always be in the center. And it looks terrible. I know I could make a more homogeneous image to make the edge disappear, but isn't there a way to space it so that the image fills the entire width of the boarder?
    [img]Background Picture Edge Location Forum%20screenshot_zpsrs7g69ip[/img]
    Thanks for the help.
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    In progress Re: Background Picture Edge Location

    Post by Ange Tuteur April 2nd 2015, 9:38 am

    Hi @Cineworks,

    From my view it appears to display fine. Have you fixed it ?
    Background Picture Edge Location Screen10
    avatar
    Cineworks
    New Member


    Posts : 12
    Reputation : 1
    Language : English

    In progress Re: Background Picture Edge Location

    Post by Cineworks April 2nd 2015, 11:09 pm

    Thanks for the post Ange,

    I fixed it for the time being by using a more homogenous image.
    But the issue remains.
    I would like to know how to control the placement of the tiled (correct term?) background image.
    Any ideas?
    BTW, I love this site! I had no idea how easy it was to create a forum. Of course, making it perfect will take a bit more work and help...
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    In progress Re: Background Picture Edge Location

    Post by Ange Tuteur April 3rd 2015, 6:45 pm

    You can use CSS to manipulate the background image.
    ( Display > Colors > CSS stylesheet )

    Here's a few examples.

    This stops the background from repeating :
    Code:
    body {
      background-repeat:no-repeat; /* stops tiling */
    }

    This stretches the background image :
    Code:
    body {
      background-size:cover;
    }

    This can fix the background image in place :
    Code:
    body {
      background-attachment:fixed;
    }

    You can over course fit all these into one single code. For example, no repeat and bg size :
    Code:
    body {
      background-repeat:no-repeat; /* stops tiling */
      background-size:cover;
    }
    avatar
    Cineworks
    New Member


    Posts : 12
    Reputation : 1
    Language : English

    In progress Re: Background Picture Edge Location

    Post by Cineworks April 7th 2015, 10:23 pm

    Great,

    Thanks Ange. Exactly what I need.