Aspen theme – how to replace MENU button text

Hello everyone,

I would like to buy the Aspen theme, but I still have a question: is it possible to

  1. replace the text of the “Menu” button with three bars (fa-bars)?
  2. have a transparent background for this menu button?

Jean-François

1 Like

To change this menu button text in the Aspen Theme, paste the CSS code below into the Settings → Code → CSS box . This will update the “Menu” button text site wide.

`figure.theme header.theme .nav_btn:after{content: ‘MENU’;}

Once pasted, adjust the quoted ‘MENU’ text as needed.

The following CSS will hide the button background and shadow.

figure.theme header.theme .nav_btn
{
background-color: rgba(0, 0, 0, 0.0);
box-shadow:none;
}

Hope that helps!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.