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 #2809450
how to create menu login/register
Closed

Comments

  • kurniaikhwan started the conversation

    hi,

    how to create special menu login/register as screenshot below?

  •  2,495
    PenciDesign replied

    Hi,

    Please go to Appearance > Customize > Topbar, scroll down to SOCIAL MEDIA / LOGIN & REGISTER POPUP, select the options on Display Login/Register?

    PenciDesign,
    Best Regards.

  • kurniaikhwan replied

    Hi, 

    can i set custom link for this special menu?

    because i want to redirect to another web 

  • kurniaikhwan replied

    as i know, we can create custom menu style using css, pls see screenshoot attached.

    how to move it to right as screehshoot attached?

    my website: https://xpertindo.net

  •  2,495
    PenciDesign replied

    Hi,

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

    @media only screen and (min-width: 768px) {
        #navigation .menu {
            width: calc(100% - 100px);
        }
        #navigation.menu-item-padding ul.menu > li:last-child,
        #navigation.menu-item-padding .menu > ul > li:last-child {
            float: right;
        }
        #navigation.menu-item-padding ul.menu > li:last-child:hover a,
        #navigation.menu-item-padding .menu > ul > li:last-child:hover a {
            background-color: red;
            color: black;
        }
    }

    Regards,
    PenciDesign.