Add the following code to the bottom of the Custom Styles to change the hamburger menu icon's colour
.menu {
border: 5px solid red;
}
.menu {
> tells the css to target the .menu class which is assigned to the hamburger button. You can adjust this to suitborder :
> define your border by adding individual border properties described belowborder
property is a shorthand property for the below individual border properties:border-width
> the width (thickness) of the borderborder-style
(required) > defines what style of border to apply (see below)border-style
property can have from one to four values (for the top border, right border, bottom border, and the left border)border-color
> defines the colour of the borderborder-color
is not set, it inherits the colour of the element.
π Back to π Hamburger Customisation