Site logo

Archived topic

how to make menu items RTL

8 replies · Started by daniel on February 11, 2022

Viewing posts 1–9 of 9

Hello I imported a site from the site library and my WordPress is RTL but the menu items are aligned to the left. How do I align the to the right or to the center?
http://www.doggie.co.il
Thanks

Hi there,

to center the nav use this CSS:

.nav-align-left .inside-navigation {
    justify-content: center;
}

to align right:

.nav-align-left .inside-navigation {
    justify-content: unset;
}

Where do i add this css?

Thank you

Simplest place is in Customizer > Additional CSS.

OK Thank you it worked for the main nav menu what about the post menu (post categories)?
http://www.doggie.co.il

up

Try this to align center:

.secondary-nav-aligned-left.rtl .secondary-navigation .inside-navigation {
    justify-content: center;
}

and this to align right:

.secondary-nav-aligned-left.rtl .secondary-navigation .inside-navigation {
    justify-content: unset;
}

worked Thank you

No problem :)

This archived topic is closed to new replies.