Link to home
Start Free TrialLog in
Avatar of IT_Group1
IT_Group1Flag for Israel

asked on

Marquee direction

hello, In my site i put Marquee in right direction and you know that the Chrome and Safari doesn't support it. My ask there is a command that make Chrome and Safari support and if now, i think to do a up direction marquee with height of 15px but i need to delay it every line.
this is my marquee now:

Open in new window

<div id="mainmarq">

<marquee  scrolldelay="0" scrollamount="3" direction="right" width="720" style="text-align: right; direction:rtl; color:#FEFDE4" >
<%

sql = "SELECT * FROM marq ORDER BY id DESC "
MenuDB_Rs.Open sql, ConnMenu
if NOT MenuDB_Rs.EOF then
DO WHILE NOT MenuDB_Rs.EOF
response.write Server.HTMLEncode(MenuDB_Rs("text")) & " , "
MenuDB_Rs.MoveNext
Loop
end if
MenuDB_Rs.close
%>
</marquee>

</div>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of nap0leon
nap0leon

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of IT_Group1

ASKER

Thanks - will be checked asap.
SOLUTION
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thx guys