Results 1 to 3 of 3

Thread: Need help to place gallery next to accordion menu

  1. #1
    Join Date
    Apr 2009
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Need help to place gallery next to accordion menu

    1) Script Title: Simple gallery

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

    3) Describe problem: I have used according menu in left, and in the middle i would like to use, simplegallery.

    when i used the script, gallery is coming down the accordion menu, and not adjacent to Accordion menu.

    can anyone please help me to place the gallery side by accordion menu.

    Thanks

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

    Default

    Instead of just placing the two elements side by side, you'll need to create two DIVs that are aligned side by side by using CSS's float property for example, then place each element inside each of the DIVs. For example:

    Code:
    <div style="width:250px; float:left">
    Accordion Menu markup here...
    </div>
    
    <div style="width:500px; float:left">
    Simple Gallery markup here
    </div>
    DD Admin

  3. #3
    Join Date
    Apr 2009
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks for your great help...

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
  •