XF 2.2 Split Navigation row

C4X4P

New member
Hi all,

Someone can help me to split the Navigation row?

The idea is on the middle put a diferent background color



Sem Título.webp


BR,

DAA
 
I don't think there is a "middle" per-se.
Code:
.p-nav-opposite {
background: green;
}

Code:
.p-nav-inner {
 background: red;
}
Code:
.p-nav {
background: purple;

Results in this

Screen Shot 2022-11-25 at 9.40.38 PM.png
I didn't find any specific CSS designators for the area between the Members and the "user data", and I don't think there is any as you can see that the red extends past the green. Template edits could probably address that.

EDIT: Only "near" solution may be to use .p-nav-scroller

Code:
 .p-nav-scroller {
 background: yellow;
}

Screen Shot 2022-11-25 at 9.46.43 PM.png

Would probably need some tweaking since the .p-nav-inner still extends past the green.

EDIT #2:

Change the margin-right:10px in the .p-nav-opposite segment to margin-right:0px; and you get this.

Screen Shot 2022-11-25 at 9.51.42 PM.png


This is all based upon a default XF style.
 
Last edited:
Top Bottom