diff --git a/js/app.js b/js/app.js index 0424cd80..b7567722 100644 --- a/js/app.js +++ b/js/app.js @@ -194,6 +194,13 @@ function showPop(id){ value = numberWithCommas(value); } + if(j == "club-contact-details"){ + if(value.length > 0) { + value = value.replace("@",""); + value = "https://twitter.com/" + value; + } + } + if(value.length == 0){ value = "Not filled in"; pop.find("." + j + " .value").addClass("not-specified").parent().addClass("not-specified"); diff --git a/style.less b/style.less index 1fb055da..732d430f 100644 --- a/style.less +++ b/style.less @@ -433,8 +433,9 @@ header { .event-date { text-align: right; display: block; - font-size: 18px; - margin: 0 0 5px 0; + float: right; + font-size: 20px; + margin: 0 0 5px 15px; position: relative; color: rgba(0,0,0,.5); } @@ -442,7 +443,7 @@ header { h1 { font-weight: 400; padding: 0 0 2px 0; - margin: 0 0 30px 0; + margin: 10px 0 30px 0; font-size: 28px; border-bottom: solid 2px #ddd; }