Now, when you hover over a block, it gets a top border color of
gold, like the PSD shows.
// }, function () {
// $(".top-bar-section").css('border-top', '10px solid blue');
// });
- $("#partners .blocks .block").each().hover(
- function() {
- $("#partners .block .block-content").css('border-color', '#fcb930')
- },
- function() {
- $("#partners .block .block-content").css('border-color', '#007697')
- }
- );
+ $("#partners .blocks .block").each(function() {
+ $(this).hover(
+ function() {
+ $(this).children(".block-content").css('border-color', '#fcb930')
+ },
+ function() {
+ $(this).children(".block-content").css('border-color', '#007697')
+ }
+ )
+ });
});
// }, function () {
// $(".top-bar-section").css('border-top', '10px solid blue');
// });
- $("#partners .blocks .block").each().hover(
- function() {
- $("#partners .block .block-content").css('border-color', '#fcb930')
- },
- function() {
- $("#partners .block .block-content").css('border-color', '#007697')
- }
- );
+ $("#partners .blocks .block").each(function() {
+ $(this).hover(
+ function() {
+ $(this).children(".block-content").css('border-color', '#fcb930')
+ },
+ function() {
+ $(this).children(".block-content").css('border-color', '#007697')
+ }
+ )
+ });
});