Site logo

Archived topic

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

6 replies · Started by Anton on October 29, 2021

Viewing posts 1–7 of 7

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

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

please help

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;
}

Thanks, everything worked!!

Glad to hear that!

This archived topic is closed to new replies.