Mobile submenu arrows to the left not to the right

Is it possible to place the arrows of the submenu to the left (somewhere fixed or near each link)?

If so, can you tell me how?

Thanks in advance.

the url is: https://streetmode.gr

Hi @Nox1,

Thank you for writing in, In the HTML markup the text comes first before the icon, so when inline the text will comes first. It is possible with flexbox CSS to re-order it but that would be outside of support that we can offer. We can place the icon near the text though by adding this to Theme Options > CSS

.x-sub-toggle {
	position: relative;
    display: inline-block;
    vertical-align: middle;
}

Hope it helps,
Cheers!

It works perfectly!

Thanks!

Glad we could help.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.