I' m trying to build a newswebsite with on my homepage 4 highlighted articles. The 4 photos belong to the 4 titles on the right: www.aclebbeke.be. When an image is displayed, the correct item on the right should be highlighted...
Hi, I have this problem on http://www.aclebbeke.be/. jScrollpane works properly, but there' s one annoying error in it: When clicking the first element within the scrollpane, it "jumps" one element down.
I' m trying to create a simple onmouseover/onmouseout effect. The point is to display 5 of the latest news messages. When hovering, I want it to collapse so you can see 10 of the latest news messages, and display 5 news messages when you get out of the box again.
Now, this works, BUT, there' s one problem I can' t seem to fix. When going over this box, it automatically starts to open and close in some kind of loop. Stopping all animations before the next one starts doesn' t seem to help. What did help, was put an "alert"-box after the animation. Then it did the right thing. I' ve tested this in Firefox, IE8 and Chrome.
I' m working on this website, which needs it' s own controls to go through the slides. The plugin I' m working with is Nivo Slider, and it generates a simple navigation for me. Here' s the url to the website: http://www.aclebbeke.be/. What I want to get, is that when I move over one of the blue items on the right, the image of that item should appear. When I move out, the slideshow should continue on it' s own. Also: the navigation in the bottom left of the picture should still keep on working.
I can' t really find something simular on the forum, or on the website of Nivo Slider. Is it possible, and if so: how?
I have about 30 users, displayed on a page. What I want is that when one user gets dragged and dropped on another user, you automatically get redirected to a page "compare.php?id1=x&id2=y". I' ve been thinking/searching on how to do this, but can' t seem to find a decent solution.
All items have the classname "user". This is what I tried to do:
I use the BetterTooltip - plugin to display some title-text when hovering an image. Internet Explorer (7) is showing it just fine, but Firefox aligns the tooltip at the top of my page, while the image is somewhere 600-700px deep on the page.
The image is aligned in a table, behind some text and looks something like this:
<img src="images/info.png" title="This is some text" class="abo-info" />
So when I hover it, a tooltip has to pop up saying "This is some text".
My script: $(document).ready(function(){ $('.abo-info').betterTooltip({speed: 150, delay: 100}); });
With following CSS for the tooltip:
.tip {
width: 360px;
padding: 5px;
display: none;
position: absolute;
margin -top: 56px;
margin-left: 50px;
color: #FFF;
font-weight: bold;
font-size: 12px;
background-image: url(images/tooltip-bgr.png);
padding-left: 15px;
background-repeat: no-repeat;
float: left;
bottom: 0px;
}
The class abo-info doesn' t really have much css. This is what it looks like now:
.abo-info {
cursor: pointer;
display: absolute;
margin-left: 5px;
}
I' ve already tried without the absolute, and with a display: block: doesn' t work.