CSS…. change the border

  • Unknown's avatar

    OcalaSouthernSod.com

    I need to change the page to have a camo border around the edge, yes I know… sorta redneck, but need to do it for the owner nonetheless – is there a way to do that?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    The first step is to upload the image you’d like to use as a border to your Media Library.

    Once the image has been uploaded, we can use the border-image property to add the image as your site’s border. You can find some more information about the border-image property here:

    border-image

    Once uploaded, the image’s URL can replace border.png in the following CSS snippet:

    .page {
        border-image: url(border.png) 25 25 stretch;
    }

    You can also change the other properties in the snippet, as described in the tutorial I linked to.

    If you upload your image, let me know and I can provide some further guidance.

  • The topic ‘CSS…. change the border’ is closed to new replies.