Make short text area twice as big
upper case first for Show more less
make show more less bigger and bold
give more padding on top of trail description.
color: #F7931E;
}
#trail_desc {
+ padding-top: 30px;
clear: left;
}
#member-img-1 {
padding: 10px 0;
text-align: center;
}
+.show-more a {
+ font-weight: bold;
+ font-size: 16px;
+}
.short-text {
overflow: hidden;
- height: 8em;
+ height: 16em;
}
.full-text{
{description:h}
</div>
<div class="show-more">
- <a href="#">Show more</a>
+ <a href="#">Show More</a>
</div>
</div>
</div><!--/#top_wrapper-->
var newText = '';
if (currentText.toUpperCase() === "SHOW MORE") {
- newText = "Show less";
+ newText = "Show Less";
} else {
- newText = "Show more";
+ newText = "Show More";
}
return newText;