Creative css scrolling albums script or tips

Asked By 0 points N/A Posted on -
qa-featured

Dear Friends,

I am having an online Photoshoot Albums website and i am in the process of upgrading the same.

Please do the needful helping me by providing me a creative CSS scrolling albums script or tips that will give an impressive looks to my online photoshoot albums.

Thanks,

Gabrielleriya

SHARE
Answered By 5 points N/A #142082

Creative css scrolling albums script or tips

qa-featured

Hello Gabrielleriya

You can use display: inline-block

#thumbnails_container {
    height:75px;
    border:1px solid black;
    padding:4px;
    overflow-x:scroll;
    white-space: nowrap
}
.thumbnail {
    border:1px solid black;
    margin-right:4px;
    width:100px; height:75px;
    display: inline-block;
}

You can use borders on the block elements and get horizontal scroll bar.

Also I will provide you with some links, in order for you to choose better what you need.

Image flow creating photo album using XML

100 Awesome CSS/Javascript Plugins and Coding Techniques

I hope you will find this information useful.

Randolph

Related Questions