help with scrollable gallery frames!!!!

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default help with scrollable gallery frames!!!!

    hi everyone
    i'm a pathetic amateur in web designing but i'm kinda slowly getting into
    it.... currently working on my website, obviously...
    well, going straight to the point i'd like to add a scrollable (horizontally)
    picture gallery just like the one
    you can find in this website:

    [url]http://www.killyridolsclub.co.uk/main_photonov24.html[/url]

    can someone come up with the code for this thingy and possibly tell me where
    to paste it into that crazy nonsense of codes of the page where i want the
    gallery to be displayed?
    oh please dont forget to mention how to place pictures and stuff inside this
    scrollable frame!

    thanx for your time and patience
    much appreciated


    Lost_in_a_Html Guest

  2. Similar Questions and Discussions

    1. Scrollable Layer?
      Anyone know how to create a layer that can scroll? I want a fixed layer size that the mouse-wheel can scroll lower than the fixed area. ...
    2. scrollable grid
      I need a scrollable grid and keep the header fixed. I found one at http://www.datawebcontrols.com/demos/ScrollableDataGridFixedHeader.aspx but I...
    3. Scrollable DataGrid
      You can use a panel control and put the datagrid in it. Then set the asp:panel...style="overflow:auto"..... There is a real nice short article on...
    4. How to you put form into a scrollable field?
      I am creating a flash form which having lots of field that can't fit into the screen, so i wonder how can i create a scroll bar to scroll the form?
    5. Scrollable Container
      Is it possible to create a Panel with a vertical scrollbar? Thanks Rob
  3. #2

    Default Re: help with scrollable gallery frames!!!!

    Put this between <head>...</head>
    <style>
    .gallerycontainer{
    width: 500px; /** Your Gallery Width **/
    padding: 10px;
    overflow: scroll;
    }.gallerycontainer img{
    margin-right: 20px; /** Picture margins with each other **/
    }
    </style>

    Insert this code where every you want to display your gallery container:
    <div class="gallerycontainer">
    <img src="picture1.jpg">
    <img src="picture2.jpg">
    <img src="picture3.jpg">
    </div>

    Php Cod3r Guest

  4. #3

    Default Re: help with scrollable gallery frames!!!!

    cheers Php Cod3r!
    that helped a lot!
    Lost_in_a_Html Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139