menu item with children - remove down arrow

Discussion in 'StartPoint Business One Page WordPress Theme' started by rexmanaster, Jan 27, 2015.

Thread Status:
Not open for further replies.
  1. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    in the main/header menu, can i remove the down arrow adjacent to a menu item with children? i prefer the top level menu items maintain consistent spacing. including the down arrow throws things off.
     

    Attached Files:

  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.


    Code:
    .sf-arrows .sf-with-ul:after {
      border: none !important;
    }
    Thanks & Regards
    Pramod
     
  3. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    that gets us halfway there, pramod. the arrows gone, but the spacing inconsistent spacing remains. i tried "padding: none !important;" but that didn't do anything. how can i get rid of that extra space?

    thanks!
    rex
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .sf-arrows .sf-with-ul {
      padding-right: 0;
    }
    Thanks
    Pramod
     
  5. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    awesome. perfect fit with padding-right: 10px.

    thanks,
    rex
     
Thread Status:
Not open for further replies.

Share This Page