get('legacy:frontend:site'); /** @var \Paperless\Planner\Admin\Site $asite */ $asite = $container->get('legacy:admin:site'); $site->cronning = true; $asite->cronning = true; $imgdim = ''; $first_bg = true; $css = "HTML BODY { border: 12px none rgb(181, 216, 218); cursor: auto; background-image: url(//themer.paperlesswedding.com/uploads/53908a17ea66e.png); background-color: rgba(0, 0, 0, 0); background-position: -101px 0px; background-repeat: repeat; } HTML BODY DIV DIV.header { top: 26px; margin-top: -20px; margin-left: 0px; margin-right: -3px; border-style: none; border-width: 0px; z-index: 5; height: 322px; background-image: url(//themer.paperlesswedding.com/uploads/538757b2b2597.png); background-color: rgba(0, 0, 0, 0); background-position: 0px 36px; background-repeat: no-repeat; } HTML BODY DIV DIV DIV.header-text { color: rgb(255, 255, 255); position: relative; left: 32px; top: 164px; font-size: 80px; font-family: 'Maiden Orange', cursive; } HTML BODY DIV DIV DIV-handle { z-index: 90; } HTML BODY DIV DIV.content { color: rgba(0, 0, 0, 0.682353); border: 4px solid rgb(181, 216, 218); font-family: Arial, Helvetica, sans-serif; top: 0px; height: 1443px; left: 0px; width: 770px; background-color: rgba(252, 253, 253, 0.85098); background-position: 0% 0%; background-repeat: no-repeat; } HTML BODY DIV DIV DIV.container { padding: 21px; } HTML BODY DIV DIV DIV H1 { color: rgb(180, 216, 217); font-size: 34px; font-family: 'Maiden Orange', cursive; } HTML BODY DIV DIV DIV P A { color: rgb(180, 216, 217); font-weight: bold; text-decoration: none; } HTML BODY DIV DIV DIV TABLE.invitebox { margin: 50px auto; position: relative; z-index: 10; border: 2px solid rgb(132, 156, 115); background-color: rgb(252, 252, 252); } HTML BODY DIV DIV DIV TABLE TBODY TR TD.inviteheader { height: 216px; background-image: url(//themer.paperlesswedding.com/uploads/53d643e0ae558.png); } HTML BODY DIV DIV DIV TABLE TBODY TR TD.invitesidebar_left { background-image: none; background-color: rgb(252, 252, 252); } HTML BODY DIV DIV DIV TABLE TBODY TR TD.invitecontent { text-align: center; height: 474px; } HTML BODY DIV DIV DIV TABLE TBODY TR TD DIV.line_1 { position: relative; left: -2px; top: -130px; font-family: Ruluko, cursive; font-size: 34px; line-height: 30px; } HTML BODY DIV DIV DIV TABLE TBODY TR TD DIV STRONG.line_1b { font-size: 14px; } HTML BODY DIV DIV DIV TABLE TBODY TR TD TABLE { position: relative; width: 100%; left: -6px; top: -98px; } HTML BODY DIV DIV DIV TABLE TBODY TR TD TABLE TBODY TR TD.line_3 { color: rgb(89, 34, 34); font-family: Ruluko, cursive; font-size: 34px; line-height: 60px; } HTML BODY DIV DIV DIV TABLE TBODY TR TD TABLE TBODY TR TD.line_4b { font-family: Ruluko, cursive; font-size: 28px; line-height: 36px; color: rgb(89, 34, 34); } HTML BODY DIV DIV DIV TABLE TBODY TR TD TABLE TBODY TR TD.line_5b { font-family: Ruluko, cursive; font-size: 28px; line-height: 36px; color: rgb(89, 34, 34); } HTML BODY DIV DIV DIV TABLE TBODY TR TD TABLE TBODY TR TD.line_7 { color: rgb(89, 34, 34); font-size: 24px; line-height: 46px; } HTML BODY DIV DIV DIV TABLE TBODY TR TD.invitesidebar_right { background-color: rgb(252, 252, 252); } HTML BODY DIV DIV DIV TABLE TBODY TR TD.invitefooter { height: 427px; background-image: url(//themer.paperlesswedding.com/uploads/53d64381a548f.png); } HTML BODY DIV DIV.menu { border: 9px solid rgb(181, 216, 218); font-family: Arial, Helvetica, sans-serif; top: 0px; height: 526px; left: 0px; width: 194px; background-color: rgb(180, 216, 217); } HTML BODY DIV DIV UL.menu-list { color: rgb(255, 255, 255); position: relative; left: 28px; top: 11px; text-align: center; font-family: 'Maiden Orange', cursive; font-size: 32px; } HTML BODY DIV DIV UL LI { padding: 0px 0px 32px; } HTML BODY DIV DIV UL LI A { text-decoration: none; }"; $layout = '2col_shortleft'; $append = ''; if (isset($site->get_cmsid) || isset($site->get_id) || isset($site->get_clone)) { if (isset($site->get_cmsid)) { $args = array( 'operator' => 'select', 'table' => 'themes', 'where' => array('_relation' => 'AND', array('key' => 'id', 'val' => $site->get_cmsid, '_operator' => '=')) ); $theme = $site->query($args)[0]; $css = $theme['css']; $layout = $theme['template']; $themetext = $theme['headertext']; } elseif (isset($site->get_id)) { $append = '?id=' . $site->get_id; $args = array( 'operator' => 'select', 'table' => 'themes', 'where' => array( '_relation' => 'AND', array('key' => 'id', 'val' => $site->get_id, '_operator' => '='), array('key' => 'login', 'val' => $site->user_id, '_operator' => '=') ) ); $theme = $site->query($args)[0]; $css = $theme['css']; $layout = $theme['template']; $themetext = $theme['headertext']; } else { $append = '?clone=' . $site->get_clone; $args = array( 'operator' => 'select', 'table' => 'themes', 'where' => array('_relation' => 'AND', array('key' => 'id', 'val' => $site->get_clone, '_operator' => '=')) ); $clonetheme = $site->query($args)[0]; $css = $clonetheme['css']; $layout = $clonetheme['template']; } } else { $args = array( 'operator' => 'select', 'table' => 'themes', 'where' => array('_relation' => 'AND', array('key' => 'id', 'val' => 84, '_operator' => '=')) ); $clonetheme = $site->query($args)[0]; $css = $clonetheme['css']; $layout = $clonetheme['template']; unset($clonetheme); } if ($site->user_loggedin && $site->user_package == 1) { header('Location: /std.php' . $append); die(); } if (isset($_POST['styles'])) { $css = $_POST['styles']; } if (isset($_POST['layout'])) { $layout = $_POST['layout']; } function array_orderby() { $args = func_get_args(); $data = array_shift($args); foreach ($args as $n => $field) { if (is_string($field)) { $tmp = array(); foreach ($data as $key => $row) { $tmp[$key] = $row[$field]; } $args[$n] = $tmp; } } $args[] = &$data; call_user_func_array('array_multisort', $args); return array_pop($args); } $defaultfonts = array(); $defaultfonts[] = array('code' => 'Arial, Helvetica, sans-serif::latin', 'name' => 'Arial'); $defaultfonts[] = array('code' => '"Arial Narrow", Arial::latin', 'name' => 'Arial Narrow'); $defaultfonts[] = array('code' => '"Arial Rounded MT Bold", Arial::latin', 'name' => 'Arial Rounded Bold'); $defaultfonts[] = array('code' => '"Book Antiqua", Georgia::latin', 'name' => 'Book Antiqua'); $defaultfonts[] = array( 'code' => '"Bookman Old Style", "Book Antiqua", "Times New Roman"::latin', 'name' => 'Bookman Old Style' ); $defaultfonts[] = array('code' => '"Bradley Hand ITC TT"::latin', 'name' => 'Bradley Hand ITC TT'); $defaultfonts[] = array('code' => '"Century Gothic", Verdana::latin', 'name' => 'Century Gothic'); $defaultfonts[] = array('code' => '"Comic Sans MS", cursive::latin', 'name' => 'Comic Sans'); $defaultfonts[] = array('code' => '"Courier New", Courier, monospace::latin', 'name' => 'Courier New'); $defaultfonts[] = array('code' => '"Franklin Gothic Medium"::latin', 'name' => 'Franklin Gothic Medium'); $defaultfonts[] = array('code' => 'Garamond::latin', 'name' => 'Garamond'); $defaultfonts[] = array('code' => 'Georgia, "Times New Roman", Times, serif::latin', 'name' => 'Georgia'); $defaultfonts[] = array('code' => 'Haettenschweiler::latin', 'name' => 'Haettenschweiler'); $defaultfonts[] = array('code' => '"Lucida Bright", Georgia::latin', 'name' => 'Lucida Bright'); $defaultfonts[] = array('code' => '"Lucida Calligraphy"::latin', 'name' => 'Lucida Calligraphy'); $defaultfonts[] = array('code' => '"Lucida Console", Monaco, monospace::latin', 'name' => 'Lucida Console'); $defaultfonts[] = array('code' => 'Mistral::latin', 'name' => 'Mistral'); $defaultfonts[] = array('code' => '"MS Mincho"::latin', 'name' => 'MS Mincho'); $defaultfonts[] = array('code' => 'Onyx::latin', 'name' => 'Onyx'); $defaultfonts[] = array('code' => 'Papyrus::latin', 'name' => 'Papyrus'); $defaultfonts[] = array('code' => 'Perpetua::latin', 'name' => 'Perpetua'); $defaultfonts[] = array('code' => '"Perpetua Titling MT"::latin', 'name' => 'Perpetua Titling MT'); $defaultfonts[] = array('code' => 'Playbill::latin', 'name' => 'Playbill'); $defaultfonts[] = array('code' => 'Rockwell::latin', 'name' => 'Rockwell'); $defaultfonts[] = array('code' => '"Rockwell Extra Bold"::latin', 'name' => 'Rockwell Extra Bold'); $defaultfonts[] = array('code' => 'Stencil::latin', 'name' => 'Stencil'); $defaultfonts[] = array('code' => 'Tamoha::latin', 'name' => 'Tamoha'); $defaultfonts[] = array('code' => '"Times New Roman"::latin', 'name' => 'Times New Roman'); $defaultfonts[] = array('code' => '"Trebuchet MS"::latin', 'name' => 'Trebuchet MS'); $defaultfonts[] = array('code' => '"Tw Cen MS"::latin', 'name' => 'TW Cen MS'); $defaultfonts[] = array('code' => 'Verdana::latin', 'name' => 'Verdana'); $defaultfonts[] = array('code' => '"Wide Latin"::latin', 'name' => 'Wide Latin'); $fonts = array(); $fonts[] = array('code' => 'Maiden+Orange::latin', 'name' => 'Maiden Orange'); $fonts[] = array('code' => 'Fresca::latin', 'name' => 'Fresca'); $fonts[] = array('code' => 'Marcellus+SC::latin', 'name' => 'Marcellus SC'); $fonts[] = array('code' => 'Habibi::latin', 'name' => 'Habibi'); $fonts[] = array('code' => 'Yellowtail::latin', 'name' => 'Yellowtail'); $fonts[] = array('code' => 'Niconne::latin', 'name' => 'Niconne'); $fonts[] = array('code' => 'Duru+Sans::latin', 'name' => 'Duru Sans'); $fonts[] = array('code' => 'Molle:400italic::latin', 'name' => 'Molle Italic'); $fonts[] = array('code' => 'Oxygen+Mono::latin', 'name' => 'Oxygen Mono'); $fonts[] = array('code' => 'La+Belle+Aurore::latin', 'name' => 'La Belle Aurore'); $fonts[] = array('code' => 'The+Girl+Next+Door::latin', 'name' => 'The Girl next Door'); $fonts[] = array('code' => 'Kite+One::latin', 'name' => 'Kite One'); $fonts[] = array('code' => 'Yesteryear::latin', 'name' => 'Yesteryear'); $fonts[] = array('code' => 'Nova+Mono::latin', 'name' => 'Nova Mono'); $fonts[] = array('code' => 'Josefin+Sans::latin', 'name' => 'Josefin Sans'); $fonts[] = array('code' => 'Buenard::latin', 'name' => 'Buenard'); $fonts[] = array('code' => 'Alex+Brush::latin', 'name' => 'Alex Brush'); $fonts[] = array('code' => 'Meie+Script::latin', 'name' => 'Meie Script'); $fonts[] = array('code' => 'Muli::latin', 'name' => 'Muli'); $fonts[] = array('code' => 'Candal::latin', 'name' => 'Candal'); $fonts[] = array('code' => 'Cousine::latin', 'name' => 'Cousine'); $fonts[] = array('code' => 'Alegreya+Sans::latin', 'name' => 'Alegreya Sans'); $fonts[] = array('code' => 'Clicker+Script::latin', 'name' => 'Clicker Script'); $fonts[] = array('code' => 'Homemade+Apple::latin', 'name' => 'Homemade Apple'); $fonts[] = array('code' => 'Nothing+You+Could+Do::latin', 'name' => 'Nothing You Could Do'); $fonts[] = array('code' => 'Covered+By+Your+Grace::latin', 'name' => 'Covered By your Grace'); $fonts[] = array('code' => 'Courgette::latin', 'name' => 'Courgette'); $fonts[] = array('code' => 'Arizonia::latin', 'name' => 'Arizonia'); $fonts[] = array('code' => 'Merienda::latin', 'name' => 'Merienda'); $fonts[] = array('code' => 'Italianno::latin', 'name' => 'Italianno'); $fonts[] = array('code' => 'Architects+Daughter::latin', 'name' => 'Architects Daughter'); $fonts[] = array('code' => 'Zeyada::latin', 'name' => 'Zeyada'); $fonts[] = array('code' => 'Indie+Flower::latin', 'name' => 'Indie Flower'); $fonts[] = array('code' => 'Devonshire::latin', 'name' => 'Devonshire'); $fonts[] = array('code' => 'Cedarville+Cursive::latin', 'name' => 'Cedarville Cursive'); $fonts[] = array('code' => 'Sacramento::latin', 'name' => 'Sacramento'); $fonts[] = array('code' => 'Handlee::latin', 'name' => 'Handlee'); $fonts[] = array('code' => 'Satisfy::latin', 'name' => 'Satisfy'); $fonts[] = array('code' => 'Monsieur+La+Doulaise::latin', 'name' => 'Monsieur La Doulaise'); $fonts[] = array('code' => 'Anonymous+Pro::latin', 'name' => 'Anonymous Pro'); $fonts[] = array('code' => 'Lusitana::latin', 'name' => 'Lusitana'); $fonts[] = array('code' => 'Fanwood+Text::latin', 'name' => 'Fanwood Text'); $fonts[] = array('code' => 'Ultra::latin', 'name' => 'Ultra'); $fonts[] = array('code' => 'Jacques+Francois::latin', 'name' => 'Jacques Francois'); $fonts[] = array('code' => 'Andada::latin', 'name' => 'Andada'); $fonts[] = array('code' => 'Cinzel::latin', 'name' => 'Cinzel'); $fonts[] = array('code' => 'Playfair+Display+SC::latin', 'name' => 'Playfair Display SC'); $fonts[] = array('code' => 'Almendra::latin', 'name' => 'Almendra'); $fonts[] = array('code' => 'Trocchi::latin', 'name' => 'Trocchi'); $fonts[] = array('code' => 'Carrois+Gothic+SC::latin', 'name' => 'Carrois Gothic SC'); $fonts[] = array('code' => 'Gafata::latin', 'name' => 'Gafata'); $fonts[] = array('code' => 'Telex::latin', 'name' => 'Telex'); $fonts[] = array('code' => 'Scada::latin', 'name' => 'Scada'); $fonts[] = array('code' => 'Voltaire::latin', 'name' => 'Voltaire'); $fonts[] = array('code' => 'Belleza::latin', 'name' => 'Belleza'); $fonts[] = array('code' => 'Ruluko::latin', 'name' => 'Ruluko'); $fonts[] = array('code' => 'Nobile::latin', 'name' => 'Nobile'); $fonts[] = array('code' => 'Pontano+Sans::latin', 'name' => 'Pontano Sans'); $fonts = array_orderby($fonts, 'name', SORT_ASC); ?>
Theme Designer
Background Images and Colours
Invitation Text
You are logged in as a Designer and a User, please log out of one account and reload the themer.
Select the parent theme (only applies if this is a colour variation of a theme).
You must be logged in to save your theme.
Don't have an accout? No problem! Just Sign up and then log in!