A marquee question

All WYSIWYG Web Builder support issues that are not covered in the forums below.
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
Post Reply
va3ts
 
 
Posts: 59
Joined: Sun Oct 20, 2013 11:51 pm

A marquee question

Post by va3ts »

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
User avatar
Pablo
 
Posts: 23458
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: A marquee question

Post by Pablo »

The test of the second marquee is wrapped to the next line because the object is too small.
delay and repeat are not found on the actual object properties
delay = duration
repeat = loop
va3ts
 
 
Posts: 59
Joined: Sun Oct 20, 2013 11:51 pm

Re: A marquee question

Post by va3ts »

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
User avatar
Pablo
 
Posts: 23458
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: A marquee question

Post by Pablo »

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?
va3ts
 
 
Posts: 59
Joined: Sun Oct 20, 2013 11:51 pm

Re: A marquee question

Post by va3ts »

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
User avatar
Pablo
 
Posts: 23458
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: A marquee question

Post by Pablo »

You can achieve this by adding this code between the head tags of the page
<style>
#Marquee1
{
white-space: nowrap;
}
</style>
va3ts
 
 
Posts: 59
Joined: Sun Oct 20, 2013 11:51 pm

Re: A marquee question

Post by va3ts »

Thanks
Post Reply