Add a top page margin

I am new to WordPress and only been using Beaver Builder for 1 day so if I am missing something simple I apologize. I did search the forums and tried some of the sippets of code but with no success. I am using Beaver Builder Theme and want to add a margin to the top of the page above the Header.
http://www.cpinetworking.com
Any help is appreciated.

Hi Shawn,

Welcome to the BB forums!

I can see that you already have a margin-top of 40px added on .fl-page so I gather this is all sorted out? Or is this not what you mean?

Jun

Hi Jun

I figured out how to add the margin and marked the post as resolved. Is there a a way to not have the margin on mobile?

Hi Shawn,

To remove the margin-top on mobile add the following to your custom CSS.

@media (max-width: 768px) {
  .fl-page {
    margin-top: 0;
  }
}

Thanks,
Danny