Small fix needed

On this page http://tinyurl.com/fqamx I want the last point on the page which says “Extra paintballs may be purchased during the game” to fit all in one line instead of wrapping onto the next. How do I do that?

Hi, your link is erroneous! :slight_smile:

Make a new one that points to your site.

http://tinyurl.com/y882uyy

Hi, display:inline-block makes it shrink wrap.

I wouldn’t suppoert IE/mac because quite frankly…that browser has almost no users lol :slight_smile:
You have this

  .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }

.clearfix {display: inline-block;}  /* for IE/Mac */

Remove that display:inline-block rule and it should be patched up :slight_smile: