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 #3699292
Top menu
Open

Comments

  •  2
    Fjura started the conversation

    Hello,

    may I ask how is it possible to create such top level black menu like it is on this website? 

    https://soledaddemo.pencidesign.net/soledad-men-fashion-shop/

  •  2,658
    PenciDesign replied

    Hi,

    The black menu is the top bar area. Please go to Appearance → Customize → TopBar → General Settings → turn on the "Enable Top Bar" option.

    Navigate to Appearance → Menus, create a new menu then assign it to the "Topbar Menu" location.

    Regards,
    PenciDesign.


  •  2
    Fjura replied

    Hello,

    not sure why it doesnt work. But I added the TopBar menu and checked it for TopBar menu, however it doesnt get displyed, the only menu that is displayed is the old one under under the logo, which is set only as "Primary menu". Would you know where the issue might be?

    Attached files:  topbar.png

  •  2
    Fjura replied

    sorry, found how to enable it. May I just ask, is it possible to center the TopBar menu and change the colors of background and text? thank you

  •  2
    Fjura replied

    actually its centered on mobile and tablet, but for some reason I cant make it centered on Desktop, would you by chance know how to center it on every device? And is it possible to show TopBar only on articles and not on pages?

  •  2,658
    PenciDesign replied

    Hi,

    Please send me your site URL.

    Regards,
    PenciDesign.

  •   Fjura replied privately
  •  2,658
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .penci-headline {
      text-align: center;
      justify-content: center;
      display: flex;
    }

    Regards,
    PenciDesign.

  •  2
    Fjura replied

    thank you, it worked.

  •  2
    Fjura replied

    and may I ask if its possible for the TopBar to be only visible on articles, not on pages?

  •  2,658
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .penci-top-bar {
      display: none
    }
    body.single .penci-top-bar {
      display: block;
    }

    Regards,
    PenciDesign.

  •  2
    Fjura replied

    thank you! worked

  •  2
    Fjura replied

    oh I just noticed, I think it only works on Desktop, when I use a mobile device, I can still see the TopBar even on pages, could you please check? Not sure why it is like that.

  •  2,658
    PenciDesign replied

    Hi,

    Please add this CSS code:

    @media only screen and (max-width: 960px) {
      .penci-top-bar.no-social.topbar-menu {
        display: none;
      }
      body.single .penci-top-bar.no-social.topbar-menu {
        display: block;
      }
    }

    Regards,
    PenciDesign.