XenForo Change the color of the Message User Arrow

CR LEAKS

Administrators
Joined
Mar 25, 2022
Messages
1,485
Credits
28,051
Step 1 :
  • Extra.less

Code:
.message-userArrow
{
border-right-color: black;

&:after
{
border-right-color: orange;
}
}

Step 2 :
  • Fixed Mobile :

Code:
.message-userArrow
{
border-right-color: black;
&:after
{
border-right-color: #654c22;
}
}
/* COLOR FOR ARROW IN POSTBIT MOBILE */
@media (max-width: @xf-responsiveNarrow)
{
.message:not(.message--forceColumns) .message-userArrow::after
{
border-bottom-color: #654c22;
}
}
 
Back
Top Bottom