Javascript Image Slider >
Posts >
Round corners on picture disappearing after switching slide
Hey there, for my website i am trying this javascript slider and i must say its better than i've seen so far. i got to a point though where i can't seem to fix a problem with just CSS.First of all, what i want: I want my menu on the left, my picture on the right and using border-radius i fixed round corners on every side.Now the problem is, these round corners disappear when switching slides. the border radius is still there but the picture gets on top of it. As soon as it switches slide again the round corner is back for a second though. Like this is where it refreshes.Is it possible in any way to have the slider refresh this CSS right after it loaded a new image? like loadimage(); refreshcss(); (commands completely made up for the matter of giving you an idea what i mean)oh btw how i fixed my round corners, may it be of any use : #slider { float:right; width:680px;height:306px;/* Make it the same size as your images. */ background:#fff url(loading.gif) no-repeat 50% 50%; position:relative; margin:0 auto;/*make the image slider center-aligned */ overflow: hidden; border-top-right-radius: 10px; border-bottom-right-radius: 10px; }(notice the last 3 lines) :)May any of you know a solution to this, if its my idea put to use or not you would really help me out!Thanks in advance!
11 months ago
Hi Robin,I am now investigating on this issue. I will update as soon as I get any solution.
11 months ago
Wonderfull! Thanks alot for your time! still working on it myself but can't find anything yet.
11 months ago
There is a solution for effects: 9,10,11,12, 13 by adding a style specification in the CSS file:
.mcSlc {border-radius:10px;}
For other effects, customizing the javascript file is needed.
11 months ago
I found there are solutions for this. For some transition effects the solution is easier, but for some other effects it seems lots of work even hard code might needed for the workaround.Would you tell me what transition effects are you using?
11 months ago
I am currently using all of the transition effects of demo2, effect: "1,2,5,6,7,8,9,12,13,14,15,16", i could drop some if this is easier for the sollution ofcourse. Thanks in advance!
11 months ago
Thats wonderfull news, i will try that out as soon as possible and just drop all other effects. These seem fine enough to be honost! Thanks a lot for your help!
New Answer