Home Forums WoodMart support forum Header Builder – Adjustment of icons Reply To: Header Builder – Adjustment of icons

#162329

Hello,

I got your point that you want to display that vertical line after my account icon as like the cart icon.

As in the header builder account element does not contain that style as like the cart icon.
But you can try the below CSS code in global custom CSS area under theme settings >> Custom CSS:

.my-account-with-icon{
border-right: 1px solid rgba(0,0,0,.1);
}

Result: https://jmp.sh/YF9gU2r

OR

.my-account-with-icon a .wd-tools-text{
    padding-left: 10px;
    border-left: 2px solid black;
}

Result: https://jmp.sh/M5sfDPZ

Best Regards.