Results 1 to 3 of 3

Thread: PHP Photo Album Pagination

  1. #1
    Join Date
    Sep 2006
    Posts
    23
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default PHP Photo Album Pagination

    1) Script Title:
    PHP Photo Album
    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...photoalbum.htm
    3) Describe problem:
    Pagination. The links for pages 1 through 8 display on one line, and then for no apparent reason [there's plenty of room] the link to page 9 appears on a new line.
    Please help me make it stop doing that.

  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

    Quote Originally Posted by panachepad View Post
    [there's plenty of room]
    Is there? Check in the style section here:

    Code:
    #navlinks{ /*CSS for DIV containing the navigational links*/
    width: 400px;
    }
    This allows only 400px of space for the page links until they would need to wrap. If, as you seem to imply, there is plenty of room for them on the page, this width value may be increased to - say, 600px. Another approach would be to just remove the rule altogether. That way the links will take up to the full available space before wrapping. In fact, if your gallery takes up the whole width of the window, this is the best way. However, if you have a real wide gallery, it may not display without a horizontal scrollbar in narrower windows/screens.
    - John
    ________________________

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

  3. #3
    Join Date
    Sep 2006
    Posts
    23
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Many thanks! I don't know why I didn't think about the control for that being in the style sheet. I assumed it was the script.

    I truly appreciate the help. Happy New Year!

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
  •