Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Amy B

    (@amybergam)

    No one has an answer?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I just saw someone else asking the same thing, so do you have a response as to why you haven’t replied to their thread? See, the forums don’t work like that. We help out when we can.

    If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:

    1. Install this Custom CSS Manager plugin https://www.ads-software.com/plugins/custom-css-manager-plugin
    2. use its “CSS Code” section of the dashboard to hold your CSS modifications:
    3. (put this code in)

      body #wprmenu_menu.wprmenu_levels a.wprmenu_parent_item {
          border: 0;
      }
      
      #wprmenu_menu.wprmenu_levels a.wprmenu_parent_item {
          margin-left: 0;
      }
      
      a.wprmenu_parent_item:before {
          position: relative;
      }
      
      a.wprmenu_parent_item:before {
          content: "";
          top: 0;
          right: 0;
          width: 46px;
          height: 100%;
          position: absolute;
          border-left: 1px solid #0D0D0D;
      }
      
      #wprmenu_menu .wprmenu_icon_par {
          left: auto;
          right: 0;
      }
    4. Save

    Alternatively use your Child Theme style.css file to hold your CSS modifications

    Thread Starter Amy B

    (@amybergam)

    With all due respect sir, I did not see my question posted elsewhere in the forum so I apologize for unknowingly bringing up a redundant issue. What did you search to come up with that other person’s issue? If I can see what my mistake was in my initial search of the forum, perhaps this won’t happen again in the future.

    And thank you for your resolution. I removed the

    content: "";

    line within

    a.wprmenu_parent_item:before {

    because the arrows weren’t dropping down to show the sub menu items as intended, but were going straight to the parent item’s page instead. So the code works beautifully now, thanks again.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    With all due respect sir, I did not see my question posted elsewhere in the forum so I apologize for unknowingly bringing up a redundant issue. What did you search to come up with that other person’s issue? If I can see what my mistake was in my initial search of the forum, perhaps this won’t happen again in the future

    I was referring to your question “No one has an answer?” – and saying loads of people ask that. Then I was pointing the question back at you, to illustrate that the forums work differently to how you think.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Dropdown Arrows for Nav Menu Sub-items (move to right side)’ is closed to new replies.