diff --git a/src/wp-content/plugins/hello.php b/src/wp-content/plugins/hello.php
index 34e3b68..ba09968 100644
a
|
b
|
Dolly'll never go away again"; |
52 | 52 | // This just echoes the chosen line, we'll position it later |
53 | 53 | function hello_dolly() { |
54 | 54 | $chosen = hello_dolly_get_lyric(); |
55 | | echo "<p id='dolly'>$chosen</p>"; |
| 55 | echo "<p id='dolly'><span class='screen-reader-text'>Quote from Hello Dolly song</span><span aria-hidden='true'>♫</span> $chosen</p>"; |
56 | 56 | } |
57 | 57 | |
58 | 58 | // Now we set that function up to execute when the admin_notices action is called |
… |
… |
function dolly_css() { |
67 | 67 | <style type='text/css'> |
68 | 68 | #dolly { |
69 | 69 | float: $x; |
70 | | padding-$x: 15px; |
71 | | padding-top: 5px; |
| 70 | padding: 5px 15px 0 15px; |
72 | 71 | margin: 0; |
73 | 72 | font-size: 11px; |
74 | 73 | } |