Jump to content
You are viewing a curated collection of the most significant posts in this topic.

Featured Replies

Posted

Does anyone know of or have an application for marquees?

 

Like I said you can create the block then use your page editor to add the block to the top.I have an example on my site if you want to see it in action.

Go to your admin scroll to pages click blocks create new block manual html then give your block a title then click on content tab add this code.

<!DOCTYPE html>
<html>
<body>
	<style>
.btn {
background: #0400ff;
  text-decoration: none;
  padding: 0.5rem;
  border: 1px solid #333333;
}
</style>
<marquee font style="bold" scrolldelay="100"><font size="5" face="Verdana"><font color="#BC8F8F">
***Get all the Latest News... World News..UK News..US News..ect.***

    <a class="btn" href="https://your site/latest news/">
      Click to see our news


    </a></marquee>



How to do it without using a deprecated tag

<!DOCTYPE html>
<html>
  <head>
      <style>
        .marquee {
            white-space: nowrap;
            animation: scroll-right-left 10s linear infinite;
        }
        @keyframes scroll-right-left {
            from {
                transform: translateX(400px);
            }
            to {
                transform: translateX(-1600px);
            }
        }
    	</style>
	</head>
	<body>
		<div class="marquee">this is a marquee done without using the deprecated marquee tag.</div>
	</body>
</html>

 

OK - I'll be the guy, now that you've stated something that would have helped from the start...

A search for "Marquee" on here doesn't yield much in relation to a 'plugin' that may exist, which gives an indication that it may not have existed here on the marketplace (no support topic, see). So how about more information on what exactly this "marquee plugin" is? Is that its actuall name, or is that what you refer to it as (if so, what is its name?) Who developed it? Was it a v4 plugin, or was it maybe a REALLY old plugin that existed back with v3?

More details...better answers.

Edited by Nathan Explosion

  • Author

I don't appreciate being mocked. Your so-called humor is ridiculous and apparently you guys like to mock customers who pay your bills. All I've asked for was a ticker, I'd appreciate some sort of help in that matter.

  • Author

It caught me off guard on a bad day, I'm kind of old school and for the pro wrestling themed site I'm using Invision for it just displays news and the occasional championship image. So, anyways I'll check out your suggestion @Matt.

Recently Browsing 0

  • No registered users viewing this page.