Home › Forums › Basel support forum › Header text color Header text color This topic has 1 reply, 2 voices, and was last updated 7 years, 3 months ago by Artem Temos. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts October 23, 2017 at 9:07 am #22292 FunkierbikeParticipant 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 🙂 October 23, 2017 at 9:56 am #22298 Artem TemosKeymaster 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 Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to create new topics. Login / Register