All Collections
Share Pages
How do I edit my wrapper for ShareProgress pages?
How do I edit my wrapper for ShareProgress pages?
Anna Schmitz avatar
Written by Anna Schmitz
Updated over a week ago

To change a wrapper for a ShareProgress page, visit your wrapper manager, scroll to the bottom and select "Create New Wrapper." Create an internal name for this wrapper and edit the html code to customize your wrapper. The share module will appear where you place the {ShareAction}tag. This is the code for the default share page wrapper. Customize it to design a wrapper that fits your organization.

<!doctype html>
<html lang="en">
<head>

<meta charset="utf-8">

<title>PAGE_TITLE</title> <!-- this will be replaced automatically -->

<meta http-equiv="X-UA-Compatible" content="IE=edge;chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

<link href="/basic.css" media="all" rel="stylesheet" type="text/css" />
</head>

<body>

<div id="header">
<div id="header_content">
<h1>My Organization</h1>
</div> <!-- #header_content -->
</div> <!-- #header -->

<div class="content">
{ShareAction} <!-- Place the {ShareAction} snippet where you want your share module to go. Usually this is inside your main container -->
</div> <!-- .content -->

<div id="footer">
<div id="footer_content">
Page Disclaimer
</div> <!-- #footer_content -->
</div> <!-- #footer -->
</body>
</html>
Did this answer your question?