Closing for the Holidays? Or just want to add some extra information to the widget?
This can now be done when editing text.
Any text with a dotted border can be edited and you may also see some dotted borders with no text. These can be used to add extra information.
Go to the you widget and click the 'My Account' button in the top right.
Click 'Edit Texts'
The editable text will be shown with a dotted border. Alternatively, you can add extra text in the empty boxes.
Tip: HTML can also be used in these boxes to make text stand out even more.
Once you have added the text, click out side of the box and the click the 'Close' button in the edit bar (Top right)
EXAMPLE HTML CODE - free to use.
<style> @keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } .blinking-text { text-align: center; font-size: 30px; color: green; animation: blink 1s infinite; } </style> </head> <body> <div class="blinking-text"> Merry Christmas & Happy New Year! </div> </body> </html>