The main child theme for this site was edited:
Links to author corrected
The get_the_author was replaced with the following:
[php] esc_url($XF->createLink(‘members/’ . strtolower(get_the_author()) . ‘.’ . get_the_author_meta(‘ID’) . ‘/’ ) )[/php]
Replaced posted on text with a simple date function
In content-single.php, near line 16 of an unmodified twenty eleven theme, the div block with the class entry-meta was modified.
Replace:
[php]twentyeleven_posted_on();[/php]With:
[php]the_time(‘l, F jS, Y’)[/php]Fixed the layout of the “Post Comment” submit button on a single post page.
Modified the style.css:
[php]#respond .form-submit {
margin-left: -25px;
margin-top: 10px;
float:none;
}
#respond input#submit {
background: none repeat scroll 0 0 #07694a;
border: medium none;
border-radius: 3px 3px 3px 3px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
color: #E4E4E4;
cursor: pointer;
font-size: 20px;
left: 30px;
margin: 20px 0;
padding: 5px 42px 5px 22px;
position: relative;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}