Greetings
To change the colour of the footnote, add the following CSS to your custom CSS file.
span.easy-footnote a:link
{
color: green;
}
span.easy-footnote a:hover
color: red;
}
span.easy-footnote a:active
{
color: purple;
}
span.easy-footnote a:visited
{
color: cornflowerblue;
}
=====================================
I put the footnote number in square brackets instead of displaying it as a superscript.
(Jason, how about giving the users an option of how they want to display the footnote link. As well as superscripts, square brackets, other people use curly brackets to enclose references. I have not seen people use anything else.)
To display the footnotes in square brackets (for example, [99]) instead of a superscript, change the file easy-footnotes.php.
REPLACE THE LINE BELOW
$footnoteContent = “<span id=’easy-footnote-” . esc_attr( $this->footnoteCount ) . ‘-‘ . $post_id . “‘ class=’easy-footnote-margin-adjust’></span><span class=’easy-footnote’><sup>” . esc_html( $this->footnoteCount ) . “</sup></span>”;
WITH
$footnoteContent = “<span id=’easy-footnote-” . esc_attr( $this->footnoteCount ) . ‘-‘ . $post_id . “‘ class=’easy-footnote-margin-adjust’></span><span class=’easy-footnote’>[” . esc_html( $this->footnoteCount ) . “]</span>”;
THAT IS, REPLACE:? <sup>” . esc_html( $this->footnoteCount ) . “</sup>
WITH:? [” . esc_html( $this->footnoteCount ) . “]
Richard