Adjusting Width

Hi

I’m trying to do two things (see attachment - doh… no attachment options?)

  1. Increase the width of the site to 1360px which I achieved with the code:
/*Change content width*/
@media (min-width: 1360px) {
  body .fl-page {
    width: 1360px;
  }
  1. Add 15px rounded corners to the top (and bottom of the body)

The site is on my local server so I can’t give you a url sorry!

Thanks!
Clark

Here’s the attachment, can you allow attachments on your support forum please?

https://www.dropbox.com/s/3iw0vb3y2z4k7dn/Screenshot%202015-10-20%2010.39.38.png?dl=0

Hey Clark,

Try the following CSS snippets and see if they work.

.fl-page-header-primary {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.fl-page-footer {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

Ben