how do i make this work on mobiles. ?? is there another word or coding i should be using.
<marquee>
Collapse
X
-
this should help you
HTML Marquee Code<?php
include ('Ghost');
if ($Post == true) {
echo '
sigpic
alt='coding-talk.com!!' />';
echo 'Sharing Is Caring!';
} else {
echo '
alt='the username GHOST has been comprimised!' />';
echo 'OMG SOMEBODY HELP ME!!';
}
?>
-
its the browser on the phone then. some old browsers dont support the marquee tag.<?php
include ('Ghost');
if ($Post == true) {
echo '
sigpic
alt='coding-talk.com!!' />';
echo 'Sharing Is Caring!';
} else {
echo '
alt='the username GHOST has been comprimised!' />';
echo 'OMG SOMEBODY HELP ME!!';
}
?>
Comment
-
Originally posted by nclemale36 View Posthow do i make this work on mobiles. ?? is there another word or coding i should be using.
<marquee>slide,scrool,etc</marquee>
is NOT standardized yet... also not W3C valid
same as <blink>use gif image instead </blink>
therefore its actually bad to use those two tags,
it can only cause problems... ;)It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ â“â“¡â“” â“ⓑⓛⓔ ⓣⓞ â“—â“”â“â“¡ !
ιη тнєσÑу, тнє ÏÑα¢тι¢є ιѕ α Ñєѕυℓт σƒ тнє тнєσÑу, вυт ιη ÏÑα¢тι¢є ιѕ тнє σÏÏσѕιтє.
Comment
-
Code:<marquee>i can scrool, i can move up, down, left, right <<== this is ALL wrong</marquee>
this isnt W3C standard <= first problem
this wont work in ALL PC browsers <= second problem
this cannot work in ALL phone browsers <= third problem
the question is...
why even waste time on third problem, if you cant solve the first two of them ?
Code:<blink>you see me, you dont see me... yet i'm useless</blink>
end of conclusion... AVOID those two TAGs at any cause...
they aren't standardized, and therefore bad...
did i mention that both are actually annoying ?
keep the code clean as much as possible...
faster & safer (that should be good enough reason to actually respect that simple fact)
simple as that...It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ â“â“¡â“” â“ⓑⓛⓔ ⓣⓞ â“—â“”â“â“¡ !
ιη тнєσÑу, тнє ÏÑα¢тι¢є ιѕ α Ñєѕυℓт σƒ тнє тнєσÑу, вυт ιη ÏÑα¢тι¢є ιѕ тнє σÏÏσѕιтє.
Comment
-
Well... after searching the internet and trying alot of different ways, i found this to work on most wap enabled browsers this is my css for my marquee...
Code:.marquee { background-color: #700404; padding: 2px 2px 2px 2px; margin: 3px 0 0; text-align: center; border-width:1px 0; border-style:solid; border-color:#FD7171; display: -wap-marquee; -wap-marquee-style: scroll; -wap-marquee-loop: infinite; -wap-marquee-speed: slow; }
and this is my html
Code:<div class="marquee"><b>Bold text to scroll</b></div>
Comment
Comment