No margins on phone

For the most part, I am quite pleased with the responsiveness of our conference website, www.PresentationSummit.com. However, I note that any left- or right-aligned text gets jammed up to the edge of the screen, and a centered paragraph might get jammed up to both edges!

I have tried all combinations of margins and pads to the various rows and/or modules that hold this text, all to no avail: On my Samsung Note 4 and on my wife’s iPhone, the text is edge to edge.

How can I give my text a few pixels of elbow room?

Hey Rick,

You should be able to do that by adding a left and right padding. If you want to apply it to the entire page, you can use the CSS snippet below.

@media (max-width: 767px) {
  .fl-page-content {
    padding-left: 10px;
    padding-right: 10px;
  }
}

Ben