Home Forums Basel support forum Header text color

Header text color

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #22292

    Funkierbike
    Participant

    Hello,

    I would like that the ‘header text color’ will change from light to dark when hover.
    Can you please give me the CSS code for that?

    Thanks 🙂

    #22298

    Artem Temos
    Keymaster

    Hello,

    It is possible with a JS code only

    jQuery(document).ready(function() {
    	jQuery('.main-header').hover(function() {
    		jQuery(this).removeClass('color-scheme-light').addClass('color-scheme-dark');
    	},function() {
    		jQuery(this).removeClass('color-scheme-dark').addClass('color-scheme-light');
    	});
    });

    Note that logo image tag can’t be changed.

    Kind Regards

Viewing 2 posts - 1 through 2 (of 2 total)