Border on website

Hi,

Would it be possible to add a border along the edges of the browser window - except from on MD, SM and XS viewports?

You can see an example here: https://design8.dk/

Thanks in advance.

Hello @Kobber,

Thanks for writing in!

You can add a border by way of using a custom css. Please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

@media(min-width: 980px){
  body:before{
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    border: solid 15px rgba(34, 47, 60, 1);
    z-index: 99999999;
  }

  body .x-root{
    margin: 15px !important;
  }
}

We would love to know if this has worked for you. Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.