If jQuery is available... Look at this menu above.
js code
jQuery(function() {
// Select all links with lightbox class
jQuery("#gl_menu >ul >li:nth-child(1) >a").css({'background-color' : 'orange', 'border' : 'none'});
jQuery("#gl_menu >ul >li:nth-child(2) >a").css({'background-color' : 'red', 'border' : 'none'});
jQuery("#gl_menu >ul >li:nth-child(3) >a").css({'background-color' : 'blue', 'border' : 'none'});
jQuery("#gl_menu >ul >li:nth-child(4) >a").css({'background-color' : 'green', 'border' : 'none'});
jQuery("#gl_menu >ul >li:nth-child(5) >a").css({'background-color' : '#FFBF00', 'border' : 'none'});
});
commentaires (0)