What is The Code To Change The "X" To Close The Offcanvas Menu? - Question | JoomShaper

What is The Code To Change The "X" To Close The Offcanvas Menu?

J

joe

Helix Framework 2 years ago

Can someone pleae provide me the custom CSS code to change the "X" on the offcanvis menu?

A link to the solution would work as well.

The default color is black, but I need it to be white.

Thanks for your assistance.

0
2 Answers
Joomla! Man
Joomla! Man
Accepted Answer
2 years ago #32315

Hello,

 .burger-icon>span {
    background-color: #fff;
}
.offcanvas-active .burger-icon>span {
    background-color: #fff;
}

Thx

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 2 years ago #32345

Hello joe

Please use this CSS to Template Options -> Custom Code -> Custom CSS

.burger-icon>span{
    background-color: white !important;
}

Best regards

0