Results 1 to 3 of 3

Thread: CMotion gallery script help? center align?

  1. #1
    Join Date
    Mar 2007
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default CMotion gallery script help? center align?

    1) Script Title: CMotion gallery

    2) Script URL (on DD):

    http://www.dynamicdrive.com/dynamici...iongallery.htm

    3) Describe problem: Hey guys, is there anybody that can help out a newbie with how to align CMotion gallery to the center of the page? any help is very much appreciated, thanks..........

    -frantik

  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

    From the default gallerystyle.css file, highlight added:

    Code:
    /* Gallery Styles */
    
    #motioncontainer {
    /*margin:0 auto;  Uncomment this line if you wish to center the gallery on page */
    width: 50%; /* Set to gallery width, in px or percentage */
    height: 130px; /* Set to gallery height */
    }
    
    #motioncontainer a img {
    border: 1px solid #cccccc; /* Set image border color */
    }
    
    #motioncontainer a:hover img {
    border: 1px sol . . .
    That would mean doing it like so:

    Code:
    #motioncontainer {
    margin:0 auto;  /*Uncomment this line if you wish to center the gallery on page */
    width: 50%; /* Set to gallery width, in px or percentage */
    height: 130px; /* Set to gallery height */
    }
    To prevent problems in IE, avoid using <center> or align="center" or text-align:center; in any container for the markup of the HTML code in Step 2 from the demo page.
    - John
    ________________________

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

  3. #3
    Join Date
    Mar 2007
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs up

    Thank you john! you're help is very much appreciated! have a good one!

    -Gian

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
  •