How to remove brackets from text scroller
How to remove brackets from text scroller
Hello
It shows brackets at start and at the end of all the messages
How do i remove it?
Also have 1 query that only 1 typewriter deluxe can be used on 1 page?
Because 2nd is overwriting the first 1
It shows brackets at start and at the end of all the messages
How do i remove it?
Also have 1 query that only 1 typewriter deluxe can be used on 1 page?
Because 2nd is overwriting the first 1
Re: How to remove brackets from text scroller
You can modify the scripts with the JavaScript editor.
http://www.wysiwygwebbuilder.com/free_extras.html
http://www.wysiwygwebbuilder.com/free_extras.html
Re: How to remove brackets from text scroller
Thanx will check today n if possible can you tell me what do i need to remove
Re: How to remove brackets from text scroller
I'm sorry, I cannot help you with modifying to code.
Re: How to remove brackets from text scroller
Ok but i just removed the brackets from the code but it is not as smooth as it was with bracket because now affects the page contents like up down up down woth it scrolling
If i keep it empty its smooth but affects the page content
As it is layout grid is that a reason?
If i keep it empty its smooth but affects the page content
As it is layout grid is that a reason?
Re: How to remove brackets from text scroller
Did you change the line:
to:
Code: Select all
text_scroller.innerText = '[' + text.substring(0, pos) + ']';
Code: Select all
text_scroller.innerText = text.substring(0, pos);
Re: How to remove brackets from text scroller
I just removed brackets from ' ' + text ' '
After removing still the same i guess i have to use floating layer for this layoutgrid is not suitable for this and thanx for the code
After removing still the same i guess i have to use floating layer for this layoutgrid is not suitable for this and thanx for the code
Re: How to remove brackets from text scroller
text_scroller.innerText = ' ' + text.substring(0, pos) + ' ';
It was this
And what you Mentioned did that as well
Same result

It was this
And what you Mentioned did that as well
Same result

Re: How to remove brackets from text scroller
I guess each change was making layout grid empty for that time thats why it was behaving like that but floating layer solved it
yet unknonw how to achieve it grid
Thankyou wwbman
@support is text scroller text is responsive?
yet unknonw how to achieve it grid
Thankyou wwbman
@support is text scroller text is responsive?
Re: How to remove brackets from text scroller
Yes, it can be used in responsive/flexible layouts.@support is text scroller text is responsive?
Re: How to remove brackets from text scroller
Sorry it was a wrong question
I meant for font size responsive
Found out its not.
So will be responsive font size in future updates?
I meant for font size responsive
Found out its not.
So will be responsive font size in future updates?
Re: How to remove brackets from text scroller
There are no plans for that, because there is no way for WWB to know which part of the script to (automatically) change to make that possible.
Re: How to remove brackets from text scroller
Thankyou for any alternative for this will be planned?