Results 1 to 3 of 3

Thread: Featured Content Glider - can't figure out why I can't add a 4th page.

  1. #1
    Join Date
    Jan 2013
    Posts
    11
    Thanks
    0
    Thanked 1 Time in 1 Post

    Unhappy Featured Content Glider - can't figure out why I can't add a 4th page.

    1) Script Title: Featured Content Glider

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

    3) Describe problem: Hi there, I'm trying to add a fourth page to this content glider to use it as a simple navigation for a website I'm making, however no matter what I try, it won't let me add a fourth page and I can't for the life of me figure out why. Would be great if someone could help me out (I'm sure its pretty simple for someone who isn't an idiot like me )

    Here's the site with the source codes etc: http://jze.comze.com/test/

    Thank you <3

    Jez
    Last edited by loljez; 01-02-2013 at 03:49 AM.

  2. #2
    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

    The closing </div> for the wrapper comes before the fourth content div:

    Code:
    <div id="stuff" class="glidecontentwrapper">
    
    <div class="glidecontent">
    <table width="600" height="600" cellpadding="5" bgcolor="#999999">
      <tr><td cellpadding="5" valign="top">Design<br /></td></tr></table></div>
    
    <div class="glidecontent">
    <table width="600" height="600" cellpadding="5" bgcolor="#333333">
      <tr><td cellpadding="5" valign="top">Portfolio<br /></td></tr></table></div>
    
    <div class="glidecontent">
    <table width="600" height="600" cellpadding="5" bgcolor="#CCCCCC">
      <tr><td cellpadding="5" valign="top">Contact<br /></td></tr></table></div>
    </div>
    
    <div class="glidecontent">
    <table width="600" height="600" cellpadding="5" bgcolor="#CCCCCC">
      <tr><td cellpadding="5" valign="top">Media<br /></td></tr></table></div>
    </div>
    Get rid of it (red in the above).


    Or Put another way (courtesy of vwphillips):

    Your HTML was a bit of a mess

    corrected code

    Code:
    <div id="stuff" class="glidecontentwrapper">
    
     <div class="glidecontent">
      <table width="600" height="600" cellpadding="5" bgcolor="#999999">
       <tr>
        <td cellpadding="5" valign="top">Design<br /></td>
       </tr>
      </table>
     </div>
    
     <div class="glidecontent">
      <table width="600" height="600" cellpadding="5" bgcolor="#333333">
       <tr>
        <td cellpadding="5" valign="top">Portfolio<br /></td>
       </tr>
      </table>
     </div>
    
     <div class="glidecontent">
      <table width="600" height="600" cellpadding="5" bgcolor="#CCCCCC">
       <tr>
        <td cellpadding="5" valign="top">Contact<br /></td>
       </tr>
      </table>
     </div>
    
     <div class="glidecontent">
      <table width="600" height="600" cellpadding="5" bgcolor="#CCCCCC">
       <tr>
        <td cellpadding="5" valign="top">Media<br /></td>
       </tr>
      </table>
     </div>
    
    </div>
    indenting helps to see the mistakes
    Last edited by jscheuer1; 01-01-2013 at 08:12 PM. Reason: merge two similar posts for clarity
    - John
    ________________________

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

  3. #3
    Join Date
    Jan 2013
    Posts
    11
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default

    Oh thanks a ton, I'm using dreamweaver so I guess its less obvious to see the mistakes, but I should've noticed that, haha, I blame lack of sleep (or maybe I'm just dumb), thank you so much. And happy new year!

Similar Threads

  1. Featured Content Glider script reset without page reload
    By justin-nc in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 05-30-2011, 03:04 AM
  2. Combining Featured Content Slider with Featured Content Glider problems.
    By ortizhj in forum Dynamic Drive scripts help
    Replies: 1
    Last Post: 05-18-2011, 02:12 PM
  3. Replies: 2
    Last Post: 09-24-2009, 08:56 PM
  4. Featured Content Glider display title of page
    By riprod in forum Dynamic Drive scripts help
    Replies: 4
    Last Post: 05-19-2009, 04:48 PM
  5. Random start page in Featured Content Glider?
    By WaxonWaxov in forum Dynamic Drive scripts help
    Replies: 3
    Last Post: 04-18-2008, 12:29 AM

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
  •