Archived topic
main navigation rtl order
5 replies · Started by Ali on May 16, 2017
Hi,
I have started a website here:
http://kavianionline.com
The problem is the order of menu items is LTR.
For example my homepage is not on the right side of menu. It is on the left side (which is rtl)
I have temporarily have changed the order from last to first to fix this probem.
The other thing is the direction of sub-menu items. Now the sub-menu items are LTR too.
Thanks for help.
Are you using a child theme by chance?
Yes, I am :)
You might need to add a function like this:
add_action( 'wp_enqueue_scripts', 'generate_child_rtl_scripts' );
function generate_child_rtl_scripts() {
wp_enqueue_style( 'generate-rtl', get_template_directory_uri() . "/rtl.css", false, GENERATE_VERSION, 'all' );
}
Thanks a lot !
You're welcome :)