Sub Menu Edges

Posted in: Newsmag
Post count: 187

Hello,

I would like to have the drop down sub-menu have slightly rounded edges in the corners instead of it looking like a square. This is current sub-menu code

.sf-menu ul {
background: #dd9c18!important;
}
.sf-menu ul .td-menu-item>a{
color: black!important;
}
.sf-menu ul .td-menu-item>a:hover{
color: white!important;
}

Post count: 187

SOLVED!!!

Very sweet. Just add a small piece of code. All I added was the BORDER-radius as seen below

.sf-menu ul {
background: #dd9c18!important;

border-radius: 10px 10px 10px 10px;
}
.sf-menu ul .td-menu-item>a{
color: black!important;
}
.sf-menu ul .td-menu-item>a:hover{
color: white!important;
}

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newsmag’ is closed to new topics and replies.