Home › Forums › WordPress Themes – Premium › Flat Responsive › remove the ” |” from footer menu? › Reply To: remove the ” |” from footer menu?
March 14, 2016 at 11:34 am
#17144
Moderator
To decrease space of header menu:
ul.navmenu > li > a, .navmenu ul > li > a {
padding: 0rem 4px;
}
Note: You can increase padding value as per your requirement. @SEE http://www.w3schools.com/css/css_padding.asp
To decrease space of footer menu:
ul.footer > li, .footer ul > li {
margin-right: 5px;
}
Note: You can decrease margin-right property as per your requirement. @see http://www.w3schools.com/cssref/pr_margin-right.asp
Please add this css on child theme style.css file so your changes will not lost on theme update.
Thanks