We have included a fun content "ticker" that fades in and out to show blocks of text. This ticker block uses an unordered
list <ul> that is styled with a bit of css. When editing the page in Design View, the content will appear expanded for easy editing.
We typically use it on the template's About Us page. In older templates it may be included on the home page and for testimonials on other
inside pages. The "look" of the ticker block is all CSS and can be edited in the default.css file.
Hint: Because we want the ticker to be a consistent height regardless of the amount of content, there is a min-height attribute. Depending on the
amount of content you place in each section, you may need to increase or decrease this minimum height.
CSS
#ticker .content {padding: 25px 35px; text-align: left; min-height: 300px;}
html
<ul id="ticker">
<li>
<section class="content">
<h6>Topic Title:</h6>
<p class="newsAuthor">Author Name</p>
<p>Since 1998 we've been focusing on the one thing we do best.</p>
<p>We make templates that work for you. They are easy to use, flexible, and are designed with clean coding,
HTML5, some great CSS3, and are cross-browser tested.</p>
</section>
</li>
...more list items...
</ul>
You can adjust the speed by editing the ticker.js file located in the javascripts folder on the main.js in newer templates and on the
ticker.js on older ones.