How can I get a custom menu widget to look like the catagories widget in the sidebar? Been searching all over can't find a solution.
Thank you.
How can I get a custom menu widget to look like the catagories widget in the sidebar? Been searching all over can't find a solution.
Thank you.
Hi SAdesignsUnltd,
Can you link to what you have now? I want to make sure we are working on the same widget and code before providing/recommending css changes.
Regards,
Devin
Here you go.
Hey!
Try following css code - add it to css/custom.css:
.widget_nav_menu a {
border-top: none;
background: none transparent;
display: inline;
padding: 0;
}
Regards,
Peter
Thank you. Here is what is working. My only problem is I can't seem to get rid of the margin or padding left so the menu item is inline with the title like the other widgets.
.single_sidebar .sidebar .widget_nav_menu .menu-you-can-also-fine-me-container a {
border: none !important;
background: transparent !important;
display: inline !Important;
padding: 0px Important;;
margin-top:20px !important;
}
.single_sidebar .sidebar .widget_nav_menu .menu-you-can-also-fine-me-container li {
float: left !important;
margin: 0 2% 0 0 !important;
width: 48% !important;
clear: none !important;
padding-left:0px !important;
}
I fixed it, I had a spelling error.
.single_sidebar .sidebar .widget_nav_menu .menu-you-can-also-fine-me-container a {
border: none !important;
background: transparent !important;
display: inline !important;
padding: 0px !important;;
margin-top:20px !important;
}
Hey!
Glad that you solved the issue :)
Best regards,
Peter
You must log in to post.