diff --git a/src/wp-content/plugins/hello.php b/src/wp-content/plugins/hello.php
index 34e3b68..0e1adbf 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: 6px 10px 4px 0; |
| 72 | 71 | margin: 0; |
| | 72 | line-height: 1.7; |
| 73 | 73 | font-size: 11px; |
| 74 | 74 | } |
| | 75 | body.rtl #dolly { |
| | 76 | padding: 6px 0 4px 10px; |
| | 77 | } |
| | 78 | @media screen and (max-width: 782px) { |
| | 79 | #dolly { |
| | 80 | float: none; |
| | 81 | } |
| | 82 | } |
| 75 | 83 | </style> |
| 76 | 84 | "; |
| 77 | 85 | } |