XF 2.3 How to change the line color in the menu

dsgh

Member
hello, how to change the line color in the menu. as seen in the picture that I marked with an arrow.

I use night mode for the theme. You can go directly via cellphone to my site wargajogja.com

IMG_5965.webp
 
Last edited:
Solution
Try this

Code:
/*horizontal line*/

.offCanvasMenu--nav .offCanvasMenu-separator

{border-top-color:red!important}

/*vertical line*/

.offCanvasMenu-link.offCanvasMenu-link--splitToggle:before

{border-left:1px solid red!important}
In extra.less template add this:
Code:
/*horizontal line*/

hr .offCanvasMenu-separator

{border-top-color:red}

/*verrtical line*/

.offCanvasMenu-link.offCanvasMenu-link--splitToggle:before

{border-left:1px solid red}

Change red to your preferred color
 
Try this

Code:
/*horizontal line*/

.offCanvasMenu--nav .offCanvasMenu-separator

{border-top-color:red!important}

/*vertical line*/

.offCanvasMenu-link.offCanvasMenu-link--splitToggle:before

{border-left:1px solid red!important}
 
Last edited:
Solution
Back
Top Bottom