Home Forums Themes Support Claue Shop – menu

Topic Resolution: Resolved
Viewing 3 reply threads
  • Author
    Posts
    • #25280

      Hi,

      In our menu, the ”shop” has a blue tag on with the text ”new”.

      How can we change the text new to a Danish text ”Ny” and change the blue color to match the other tags.

      See attached photo.

      Attachments:
      You must be logged in to view attached files.
    • #25284

      Hi,

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

      html[lang="da-DK"] .jas-menu li.hot > a:after {
      	content: 'Hot';
      }
      html[lang="da-DK"] .jas-menu li.sale > a:after {
      	content: 'Sale';
      }
      html[lang="da-DK"] .jas-menu li.new > a:after {
      	content: 'New';
      }

      and change text Hot, Sale , New to your language.

      Regards

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

    • #25287

      Hi Harry,

      what about the color too?

    • #25299

      Hi,

      Please change code to

      html[lang="da-DK"] .jas-menu li.hot > a:after {
      	content: 'Hot';
      	background: #ff3e11;
      	color: #fff;
      }
      html[lang="da-DK"] .jas-menu li.sale > a:after {
      	content: 'Sale';
      	background: #ffa800;
      	color: #fff;
      }
      html[lang="da-DK"] .jas-menu li.new > a:after {
      	content: 'New';
      	background: #01bad4;
      	color: #fff;
      }

      And change with your color

      Regards

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

Viewing 3 reply threads

You must be logged in to reply to this topic.