No. Keep the css. Take away the javascript, both the one on the page:
Code:
<script type="text/javascript">
new pausescroller("pscroller2", "someclass", 2000)
</script>
and the external tag linking to the one off the page:
Code:
<script src="pausescroller.js" type="text/javascript">
/***********************************************
//* Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com)
//* This notice MUST stay intact for legal use
//* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
</script>
I'm not sure I understand what you're saying about the markup. With that you leave everything except the content that you do not want. So if you have:
HTML Code:
<div id="pscroller2">
<span><center><font color=#ffffff> Call, Click or Live Chat if you have a question and would like some help</font color></center></span>
<span><center><font color =#ffffff>Bring your older water feature to life with a Pond Renovation</font color></center></span>
<span><center><font color =#ffffff>We can help you size your equipment for Low Maintenance & Clear Water</font color></center></span>
<span><center><font color =#ffffff>Building your own pond ? .. Get our Professional Help & Advice as you go along</font color></center></span>
<span><center><font color =#ffffff>Schedule a Full Cleaning ... your feature will look like new again</font color></center></span>
</div>
And you just want the one about "Schedule a Full Cleaning", make it like so:
HTML Code:
<div id="pscroller2">
<span><center><font color =#ffffff>Schedule a Full Cleaning ... your feature will look like new again</font color></center></span>
</div>
Bookmarks