[Resolved] Hello. How to round the corners of the main menu if it is placed sideways on the

Home Forums Support [Resolved] Hello. How to round the corners of the main menu if it is placed sideways on the

Home Forums Support Hello. How to round the corners of the main menu if it is placed sideways on the

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1983171
    Anton

    Hello. How to round the corners of the main menu if it is placed sideways on the site?https://ibb.co/0ydTS9w

    #1983215
    Ying
    Staff
    Customer Support

    Hi Anton,

    Give this CSS a try:

    .inside-right-sidebar aside:nth-child(1) {
        border-radius: 20px;
    }

    If it doesn’t work, can you link us to the site in question?

    You can use the private information field.
    https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information

    Let me know 🙂

    #1983256
    Anton

    On the menu site in the left sidebar, the code did not work

    #1983260
    Anton

    please help

    #1983393
    David
    Staff
    Customer Support

    Hi there,

    you have this CSS:

    .inside-article, .sidebar .widget, .comments-area {
        border-right: 2px solid rgba(0, 0, 0, 0.07);
        border-top: 2px solid rgba(0, 0, 0, 0.07);
        border-left: 2px solid rgba(0, 0, 0, 0.07);
        border-bottom: 2px solid rgba(0, 0, 0, 0.07);
        box-shadow: 0 0 3px rgba(232, 234, 237, 0.5);
        border-radius: 15px;
    }

    Change it to:

    .inside-article, .sidebar .widget, .comments-area, .gen-sidebar-nav nav {
        border-right: 2px solid rgba(0, 0, 0, 0.07);
        border-top: 2px solid rgba(0, 0, 0, 0.07);
        border-left: 2px solid rgba(0, 0, 0, 0.07);
        border-bottom: 2px solid rgba(0, 0, 0, 0.07);
        box-shadow: 0 0 3px rgba(232, 234, 237, 0.5);
        border-radius: 15px;
    }
    #1983559
    Anton

    Thanks, everything worked!!

    #1983806
    David
    Staff
    Customer Support

    Glad to hear that!

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.