Mobile Menu Arrow Icon Alignment

I have looked through your other posts, and none of the solutions have worked for me.

I am trying to align the downward arrow icons in the mobile menu.

I successfully used this code to allow the menu item to automatically pull up the submenu without having to directly tap the arrow icon. But now the dropdown arrow icon is centered. I would like it aligned to the right or removed completely.

/Mobile Menu/
.x-sub-toggle {width:100%; z-index: 999;

.x-sub-toggle .x-icon-angle-double-down {
display:none;
float:right;
margin-right: 10px;
}

Site Link - https://canalfootball.com/

Thanks!

Hi There,

Thanks for writing in!

Please use this CSS and let us know if that helps!

.mobile .x-sub-toggle>span {
    text-align: right;
    padding-right: 10px;
}

Hope that works!

Thanks

Thank you for the response! Unfortunately it did not work for me. Any other suggestions?

Hi there,

Please remove the previously suggested code then edit this block of code:

.x-sub-toggle {
    width: 100%;
    z-index: 999;
}

to:

.x-sub-toggle {
    width: 100%;
    z-index: 999;
    right: 10px;
    text-align: right;
}

Here are some reference links related to the suggestions above:

Hope this helps.

That did it. Thank you! I appreciate your help!

You’re most welcome!

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