A marquee question
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
A marquee question
I have a 2 test marquee's on this page. https://gbarc.ca/testpage.php They both have the same data but the lower marquee is shortened a bit to accommodate a 320 pixel breakpoint, works except it doesn't display all the text as is contained on the first marquee. Also some of the HELP items like delay and repeat are not found on the actual object properties. I'm sure its a work in progress, so this is just FYI..thanks Tom
Re: A marquee question
The test of the second marquee is wrapped to the next line because the object is too small.
repeat = loop
delay = durationdelay and repeat are not found on the actual object properties
repeat = loop
Re: A marquee question
That's a little different from the last version, so in order to place this in 320px breakpoint, I have to reduce the text? Or make the object larger ...I added a third on the test page
best regards
best regards
Re: A marquee question
The old marquee was an unofficial HTML feature, it has now been replaced with standard HTML/CSS.
Which specific functionality of the old marquee are you looking for?
Which specific functionality of the old marquee are you looking for?
Re: A marquee question
To have a longer sentence, scrolling through a shorter object, so for instance be able to place the marquee on a smaller breakpoint. Using example 2 on the testpage. I tried the news feed ticker but if it scrolls to the left I couldn't get it to do it. https://gbarc.ca/testpage.php
Re: A marquee question
You can achieve this by adding this code between the head tags of the page
<style>
#Marquee1
{
white-space: nowrap;
}
</style>