vote up 3 vote down star
1

Hi, this is my first question here! :)

I'm looking for method for my hovering issue.

<div class="section">

<div class="image"><img src="myImage.jpg" /></div>

<div class="layer">Lorem Ipsum</div>

</div>

Now, both classes (image and layer) has borders, both have different color for normal and hover. Is there way to make so if I hover layer class, both layer and image class hovering border color is active? And vise versa?

Thanks! :)

flag

80% accept rate

5 Answers

vote up 3 vote down check

You dont need javascript for this...

some css would do it. Here is an example

<html>
  <style type="text/css">
    .section { background:#ccc; }
    .section { background:#ddd; }
    .section:hover img { border:2px solid #333; }
    .section:hover .layer { border:2px solid #F90; }
  </style>
</head>
<body>
  <div class="section">
    <img src="myImage.jpg" />
    <div class="layer">Lorem Ipsum</div>
  </div>
</body>
</html>
link|flag
Okey, here's winner!! :) I didn't know that if i have something:hover, I can continue that whit another element! (somthing:hover .second).. Everyday you learn something new.. Thanks x10 – Marko Sep 23 at 8:28
vote up 1 vote down

This is not difficult to achieve, but you need to use the javascript onmouseover function. Pseudoscript:

<div class="section ">

<div class="image"><img src="myImage.jpg" onmouseover=".layer {border: 1px solid black;} .image {border: 1px solid black;}" /></div>

<div class="layer">Lorem Ipsum</div>

</div>

Use your own colors. You can also reference javascript functions in the mouseover command.

link|flag
1  
+1 for using class CSS change instead of element one as another example. – DVK Sep 22 at 20:36
This is working too, thanks! I just try to avoid inline coding as much I can.. ;) – Marko Sep 22 at 21:10
:) Yeah, that's what you get when I type quick 'n dirty code. – eykanal Sep 24 at 16:25
vote up 1 vote down

This worked for me in Firefox and Chrome and IE8...

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
<html>
    <head>
    	<style type="text/css">
    	div.section:hover div.image, div.section:hover div.layer {
    		border: solid 1px red;
    	}
    	</style>
    </head>
    <body>
    	<div class="section">
    		<div class="image"><img src="myImage.jpg" /></div>
    		<div class="layer">Lorem Ipsum</div>
    	</div>
    </body>
</html>

... you may want to test this with IE6 as well (I'm not sure if it'll work there).

link|flag
Actually it can work in IE8, it seems. Adding the Doctype made the difference. So there -- a pure CSS solution. ;) – Steve Wortham Sep 22 at 20:58
vote up 1 vote down

I think the best option for you is to enclose both divs by another div. Then you can make it by CSS in the following way:

<html>
<head>
<style>
  div.both:hover .image { border: 1px solid blue }
  div.both:hover .layer { border: 1px solid blue }
</style>
</head>

<body>
<div class="section">

<div class="both">
  <div class="image"><img src="myImage.jpg" /></div>
  <div class="layer">Lorem Ipsum</div>
</div>

</div>
</body>
</html>
link|flag
vote up 0 vote down

You'd need to use javascript to accomplish this, I think.

jQuery:

$(function(){
   $("#innerContainer").hover(
        function(){
            $(#innerContainer").css('border-color','#FFF');
            $(#outerContainer").css('border-color','#FFF');
        },
        function(){
            $(#innerContainer").css('border-color','#000');
            $(#outerContainer").css('border-color','#000');
        }
    );
});

Adjust the values and element id's accordingly :)

link|flag
Nice, really nice! What about if I have multiple section for same class names? Now I've tryed that for four whit same class names and when I hover one, those all changes?? Should I make running number front of all sections? Does jquery have wildcard support anykind? (okey, I try just google for it! ;)) Thanks.. – Marko Sep 22 at 21:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.