Marquee help?

Cronus

Cerberus Founder/Developer
Jul 19, 2013
449
25
Can someone help me with this php/css marquee thing please?

So I am trying to make

YTrH.png


I am trying to make the song name go on side not bottom not top side any help code:

PHP:
<div class="current_song" >
Current song: <marquee><a href="http://panel3.serverhostingcenter.com:2199/tunein/gnjdohrw.pls" id="cc_strinfo_song_gnjdohrw" class="cc_streaminfo">Loading ...</a><br /></marquee>
</div>

Css:
PHP:
                    <style type="text/css" media="screen">

.current_song {
    margin-top: 20px;
   
}

        </style>
 

IntactDev

Member
Nov 22, 2012
399
71
Code:
.current-song {
    display: inline;
}

.current-song-container {
    margin-top: 20px;
}

Code:
<div class="current-song-container" >
Current song: <marquee class="current-song"><a href="http://panel3.serverhostingcenter.com:2199/tunein/gnjdohrw.pls" id="cc_strinfo_song_gnjdohrw" class="cc_streaminfo">Loading ...</a><br /></marquee>
</div>
 

Sysode

Front-End Developer
Dec 11, 2012
1,673
848
Just to inform you, the <marquee> tag is deprecated in HTML5 so it's good practice to use a javascript fallback. Some easy to follow examples can be seen below:


 

Cronus

Cerberus Founder/Developer
Jul 19, 2013
449
25
Kind of nooby but here is the fulll code

Code:
<div class="content_stats" meta http-equiv="refresh" content="120">

                    <style type="text/css" media="screen">

.current-song {
    display: inline;
}

.current-song-container {
    margin-top: 20px;
}

        </style>
<div class="current-song-container" >
Current song: <marquee class="current-song"><a href="http://panel3.serverhostingcenter.com:2199/tunein/gnjdohrw.pls" id="cc_strinfo_song_gnjdohrw" class="cc_streaminfo">Loading ...</a><br /></marquee>
</div>



On Air: <span id="cc_strinfo_title_gnjdohrw" class="cc_streaminfo"></span><br />
Current listeners: <span id="cc_strinfo_listeners_gnjdohrw" class="cc_streaminfo"></span> / <span id="cc_strinfo_maxlisteners_gnjdohrw" class="cc_streaminfo"></span><br />

<script language="javascript" type="text/javascript" src="http://panel3.serverhostingcenter.com:2199/system/streaminfo.js"></script>
</div>
 

Users who are viewing this thread

Top