Your account expired support, please renew to get your support.

Home Forums Themes Support Claue 2 questions…

Viewing 1 reply thread
  • Author
    Posts
    • #37791
      dnoguera
      Support Expired

      I have 2 questions that I cannot solve.

      1 – If I use a transparent header, it does not assign the colors correctly, if I select a sticky menu and assign a color, it only assigns it to the cart icons, wishlist, etc., but it does not assign it to the main menu. I attach the images.

      2 – Is there a way to change the color of the cart bubble?
      thanks.

       

       

      • This topic was modified 3 years, 8 months ago by dnoguera.
      Attachments:
      You must be logged in to view attached files.
    • #37809
      Harry
      Support Expired

      Hi,

      1, You can fix by open file helper.php in wp-content > claue > core > libraries > janstudio > hooks and change code on line 1224

      if ( cs_get_option( 'transparent-main-menu-hover-color' ) ) {
      	$css[] = '
      		.home .header__transparent .jas-menu li > a:hover {
      			color: ' . esc_attr( cs_get_option( 'transparent-main-menu-hover-color' ) ) . ';
      		}
      	';
      }

      to

      if ( cs_get_option( 'transparent-main-menu-hover-color' ) ) {
      	$css[] = '
      		.home .header__transparent .jas-menu li > a:hover {
      			color: ' . esc_attr( cs_get_option( 'transparent-main-menu-hover-color' ) ) . ';
      		}
      		.home .header-sticky .jas-menu > li > a,
      		.home .header-sticky .jas-action a  {
      			color: ' . esc_attr( cs_get_option( 'sticky-main-menu-color' ) ) . ';
      		}
      	';
      }

      Or add below code to Dashboard > Claue > Theme Option > General Layout > Custom CSS

      .home .header-sticky .jas-menu > li > a,
      .home .header-sticky .jas-action a  {
      	color: #222;
      }

      and change #222 with your color

      2. Please add below code to Claue > Theme Option > Scheme Color and change primary color.

      Kind regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

Viewing 1 reply thread

You must be logged in to reply to this topic.