html - I'm trying to replace an image with a square (div shape) in this carousel -
using code:
http://jsfiddle.net/ybrx3/1022/
i'm trying insert green square (currently below carousel) carousel. whenever try replace 1 of images square's script, however, other items in carousel end line below. believe has .imagediv img {
portion of css script, i'm not sure how modify that. appreciated. thanks!
html:
<body bgcolor="#e6e6fa"> <div id="alternatewrapper" class="wrapper"> <div class="scrolls"> <img style="width:80px;" src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" /> <img src="http://placehold.it/50x50" />
<div id="div1" style="width:80px;height:80px;background-color:green;"></div>
css:
.wrapper { background:transparent; margin: auto; text-align: center; position: relative; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; margin-bottom: 20px !important; width: 400px; padding-top: 25px; } .scrolls { overflow-x: scroll; overflow-y: hidden; height: 100px; white-space:nowrap } .imagediv img { box-shadow: 1px 1px 10px #999; margin: 2px; max-height: 200px; cursor: pointer; display:inline-block; *display:inline; *zoom:1; vertical-align:top; }
the ".imagediv img" portion of css has nothing it. take div trying insert , following:
1) add display:inline-block; right after background-color:green;
2) cut/paste div tag right after first img tag (the 80px one)
you see 80px green div right after 80px placeholder image.
please note quick fix. don't think should using inline css , hope create class formats divs wish insert. luck!
Comments
Post a Comment