Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.
Merged

Dev #179

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions src/css/member-onboarding.css
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -1156,24 +1156,25 @@ form#commentform .comment-textarea textarea {
background-color:#363636!important;
}

.contentWrapper{
#single-member-onboarding{
padding-bottom:100px;
}
.contentWrapper h2{

#single-member-onboarding h2{
margin-bottom: 20px;
margin-top: 20px;
font-size:32px;
}

.contentWrapper table{
#single-member-onboarding table{
margin: 20px 0;
}

.contentWrapper ul{
#single-member-onboarding ul{
padding:0!important;
}

.contentWrapper ul li {
#single-member-onboarding ul li {
background: rgba(0, 0, 0, 0) url("/mf/i/content-list-dot.png") no-repeat scroll 0 0!important;
line-height: 24px!important;
padding: 0 0 0 22px!important;
Expand Down Expand Up @@ -1841,7 +1842,8 @@ color: #3d4d65 !important;
}
/* END: Accommodating for IE */

.pageContent h3{
#onboarding h3,
#single-member-onboarding .pageContent h3{
padding-bottom:10px!important;
padding-top:10px!important;
line-height: 32px;
Expand Down
11 changes: 0 additions & 11 deletions wp/index.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,5 @@
<?php

if (isset($_GET['_escaped_fragment_']) ||
(isset($_SERVER['HTTP_USER_AGENT']) && strpos($_SERVER['HTTP_USER_AGENT'], 'facebookexternalhit') !== false)) {
$opts = array('http'=>array('method'=>"GET", 'header'=>"X-Prerender-Token: fC07JMTM06w1k8RIdLDs\r\n"));
$context = stream_context_create($opts);

$renderer = 'http://service.prerender.io/http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
$rendered = file_get_contents($renderer, false, $context);
echo $rendered;
return;
}

foreach ($_GET as $key => $value) {
$_GET[$key] = filter_input(INPUT_GET, $key, FILTER_SANITIZE_STRING);
}
Expand Down