Quote:
Originally Posted by The Rocketeer
Hey Wayne Do you know anyway to add like a forward or backward button to this thing?
|
Sorry.. Haven't looked into this functionality yet. Have been busy building a movie library within the vBulletin Framework. It isn't quite complete yet but getting there.
http://www.wayneflix.com/movies.php
Once I get done with the movie library, I am going to rewrite this using some PHP to pull articles marked as "featured" in the database. Don't know if I'll be able to distribute it though.
Quote:
Originally Posted by biancolaw
Can someone tell me how I would center the picture? I tried making the pics 430x270 but my homepage uses 75% for the middle column so the pics are aligned left. No matter what I edit, it seems I cannot center the picture.
|
Enclose your slider within a div container and do something like:
Code:
<style>
.slcenter {width: 540px;margin-left: auto;margin-right: auto;}
</style>
Mine looks like:
HTML Code:
<div class="slcenter">
<ul id="slider">
<li>Image 1</li>
<li>Image 2</li>
<li>Image 3</li>
</ul>
</div>