Results 1 to 2 of 2

Thread: Help on Featured Content Slider v2.4

  1. #1
    Join Date
    Oct 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Help on Featured Content Slider v2.4

    1) Script Title: Featured Content Slider v2.4

    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...tentslider.htm

    3) Describe problem:
    I modified the gallery "Example2" to my needs, but is there anyway i can create a square box that display background of certain color code?

    I tried to use a table and created:
    <a href="#" class="toc"><td bgcolor="yellow">&nbsp;</td></a>

    It is able to display the color out, but the border is unable to display when mouse over.

    4)What i would like to achieve
    I would like to achieve something like the demos on http://www.dynamicdrive.com/dynamici...tentslider.htm
    with the image as its selector, and i want to change it to color box.

    Hope somebody can help!

    thanks to everybody!!!

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    This is really just a CSS issue. There are several ways to go about this, but check out one approach to get you going:

    Code:
    <style type="text/css">
    
    .colorbox{
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid gray;
    background: blue;
    float: left;
    margin-right: 5px;
    }
    
    </style>
    
    <body>
    
    <a href="#" class="colorbox"></a> <a href="#" class="colorbox"></a> <a href="#" class="colorbox"></a>  <a href="#" class="colorbox"></a>
    DD Admin

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •