Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #338047
    Annan Mig
    Participant

    I use the Bold Photography theme for my WordPress site. The (sub-) menu’s open right-to-left. I want them to open left-to-right. Can anyone advise me on how to do that?

    Big thanks in advance.

     

    P.S.: it’s not about Bold Photography Blocks

     

     

    #338049
    sujapati
    Keymaster

    @Annan: You can change the submenu alignment from left to right by adding following CSS to your site.

    
    
    @media screen and (min-width: 75em) {
      .navigation-classic .main-navigation ul li:hover > ul, .navigation-classic .main-navigation ul li.focus > ul {
        left: 0;
        right: auto;
      }
      .navigation-classic .main-navigation ul ul li:hover > ul, .navigation-classic .main-navigation ul ul li.focus > ul {
        left: 100%;
        right: auto;
      }
    }

    Please feel free if you need any further assistance.

    Kind Regards,
    Sujapati

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.