Edit online

The <oxy:front-page> element is associated with a page named front-page with no headers or footers. The <oxy:front-page-title> is styled with a bigger font. The built-in CSS rules are in [PLUGIN_DIR]/css/p-front-page.css.

@media print {

    front-page {
        page: front-page;
    }

    front-page-title {
        display:block;
        text-align:center;
        margin-top:3in;
        font-size:2em;
        font-family:arial, helvetica, sans-serif;
        font-weight:bold;
    }

    @page front-page {    	
        @top-left-corner    {          content:none }
        @top-left           {          content:none }
        @top-center         {          content:none }
        @top-right          {          content:none }
        @top-right-corner   {          content:none }
        @bottom-left-corner {          content:none }
        @bottom-left        {          content:none }
        @bottom-center      {          content:none }
        @bottom-right       {          content:none }
        @bottom-right-corner{          content:none }
    }
}
Note: This is listed solely for illustration purposes, as the plugin might use something different.