Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Lost_in_a_Html #1
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
-
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. ... -
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... -
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... -
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? -
Scrollable Container
Is it possible to create a Panel with a vertical scrollbar? Thanks Rob -
Php Cod3r #2
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
-
Lost_in_a_Html #3
Re: help with scrollable gallery frames!!!!
cheers Php Cod3r!
that helped a lot!
Lost_in_a_Html Guest



Reply With Quote

