Results 1 to 6 of 6

Thread: Two issues with Featured Content Slider v2.4

  1. #1
    Join Date
    Jul 2008
    Posts
    7
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Two issues with 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:

    First off my site is
    http://www.mulescentral.com

    My problem is two-fold
    1. I am trying to add a fifth element in the pagination and content DIVs, and it screwed everything up. Things were running smoothly with four, but I tried to add a fifth and not only is the fifth thumbnal image (pagination image) not showing up, but the content DIVs do not match with the corresponding pagination sliders.

    2. After that, I was wanting to put a sentence of text to the right of each pagination slider image. An example is here:

    http://kuathletics.cstv.com/#00

    Any help on those two fronts is greatly appreciated!

  2. #2
    Join Date
    Jul 2008
    Posts
    7
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    I have the first one fixed....now just need help on the second one....still stumped

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

    Default

    Well, for the 2nd issue, since you're using "markup" mode to manually define the pagination links' HTML, it's mainly comes down to just modifying that HTML to include text alongside the images:

    Code:
    <div id="paginate-slider1" class="pagination">
    <a href="#" class="toc"><img src="images/fhs_11_10_07/29.jpg" width="85" height="63" border="2" /></a>
    <a href="#" class="toc"><img src="images/players/alums/DWalker/5.jpg" width="85" height="63" border="2" /></a> 
    <a href="#" class="toc"><img src="images/mainart1.gif" width="85" height="63" border="2" /></a> 
    <a href="#" class="toc"><img src="images/mainart3.gif" width="85" height="63" border="2" /></a>
    
    <a href="#" class="toc"><img src="images/players/alums/CWearher/weatherington22.jpg" width="85" height="63" border="2" /></a>
    </div>
    Perhaps modify the above to something like:

    Code:
    <style type="text/css">
    
    .tocboxes{
    float: left;
    width: 150px;
    }
    
    .tocboxes a img{
    float: left;
    }
    
    </style>
    
    <div id="paginate-slider1" class="pagination">
    <div class="tocboxes"><a href="#" class="toc"><img src="images/fhs_11_10_07/29.jpg" width="85" height="63" border="2" /> Some text</a></div> 
    <div class="tocboxes"><a href="#" class="toc"><img src="images/players/alums/DWalker/5.jpg" width="85" height="63" border="2" /> Some text</a></div> 
    <div class="tocboxes"><a href="#" class="toc"><img src="images/mainart1.gif" width="85" height="63" border="2" /></a></div> 
    <div class="tocboxes"><a href="#" class="toc"><img src="images/mainart3.gif" width="85" height="63" border="2" /></a></div> 
    <div class="tocboxes"><a href="#" class="toc"><img src="images/players/alums/CWearher/weatherington22.jpg" width="85" height="63" border="2" /></a></div>
    </div>
    I think you get the idea.

  4. The Following User Says Thank You to ddadmin For This Useful Post:

    kca741979 (07-13-2008)

  5. #4
    Join Date
    Jul 2008
    Posts
    7
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Thanks a bunch......I have it all set up, but I am now having visual differences on the pagination between IE and Firefox. Everything looks fine in IE but FF looks very different.

    Can anyone lend advice on how to fix that?

  6. #5
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Code:
    <div id="paginate-slider1" class="pagination">
    
    <div class="tocboxes">
    	<b>
    	<a rel="1" href="#" class="toc">
    	<font style="font-size: 7pt; font-weight: 700; text-decoration: none;" color="#ffffff" face="Verdana">
    	<img src="images/players/alums/DWalker/5.jpg" border="2" height="48" hspace="5" vspace="5" width="65">Walker Catching On In 'Frisco</font></a></b></div> 
    <div class="tocboxes">
    	<b>
    	<a rel="2" href="#" class="toc">
    	<font style="font-size: 7pt;" color="#ffffff" face="Verdana">
    	<img src="images/mainart1.gif" border="2" height="48" hspace="5" vspace="5" width="65"><span style="text-decoration: none; font-weight: 700;">UCM Golf Classic Coming</span></font></a></b></div> 
    <div class="tocboxes">
    	<b>
    	<a rel="3" href="#" class="toc">
    	<font style="font-size: 7pt;" color="#ffffff" face="Verdana">
    	<img src="images/mainart3.gif" border="2" height="48" hspace="5" vspace="5" width="65"><span style="text-decoration: none; font-weight: 700;">Check Out Our Forums!</span></font></a></b></div> 
    <div class="tocboxes">
    	<b>
    	<a rel="4" href="#" class="toc selected">
    	<font style="font-size: 7pt;" color="#ffffff" face="Verdana">
    	<img src="images/players/alums/CWearher/weatherington22.jpg" border="2" height="48" hspace="5" vspace="5" width="65"><span style="text-decoration: none; font-weight: 700;">Former 
    	Mule Gets Award</span></font></a></b></div><div style="clear:left;"></div>
    </div>
    Also, as things will still look bad in some browsers, add this style:

    Code:
    <style type="text/css">
    
    .tocboxes{
    float: left;
    width: 150px;
    text-align: left;
    background: #000000;
    }
    .tocboxes a {
    display:block;
    text-decoration:none;
    }
    .tocboxes a img{
    float: left;
    }
    
    </style>
    Last edited by jscheuer1; 07-13-2008 at 04:53 PM. Reason: add info
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  7. The Following User Says Thank You to jscheuer1 For This Useful Post:

    kca741979 (07-13-2008)

  8. #6
    Join Date
    Jul 2008
    Posts
    7
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Thanks a lot!

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
  •