Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #1920824
Transparent bg color for active menu item
Closed

Comments

  • daimpa started the conversation

    Hello, I need two things for main nav menu, with header style #1:

    1. I would like to have transparent bg color for active/hover item (no chance to add "transparent" in the customization options)
    2. I want to add a separator between the "li" items. I'd like to use "/" as a separator.

    Cheers,

    Daniele.

  •  501
    Penci replied

    Hi,

    Please  go to Customize > Logo and Header Options, then scrolldown and check  "Disable Padding on Menu Item Level 1" option as screenshot http://prntscr.com/mucyxo

    Best Regards,

    PenciDesign

  • daimpa replied

    This removes background color, thanks.

    Now I need:

    1. More padding between items
    2. A character separating items. Example: Home / Forum / Blog
  •  501
    Penci replied

    Hi,

    Please go to Customize > Addtional CSS then add custom css to do that : 

    .main-navigation.penci_disable_padding_menu > ul:not(.children) > li:not( :last-child ){
    padding-right: 30px
    }
    .main-navigation.penci_disable_padding_menu > ul:not(.children) > li:not( :last-child ):before {
        content: '/';
        position: absolute;
        right: 15px;
        margin-top: -2px;
        float: right;
        line-height: 1;
        top: 50%;
        transform: translateY( -50% );
    }

    You can change padding between items is 30 to any padding you want.

    Best Regards,

    PenciDesign