is it possible to place the plus menu on the right side of the navigation menu instead the left side ?
please also tell me the customization code for size, color, font-size, etc. for the Plus Menu 15 must read.
2 Answers
Hi,
To resolve this issue, you can add the following code to the style.css file:
@media (min-width: 980px) {
.desktop .top-news .top-news-inner {
margin-right: -10px;
float: right;
}
.desktop .top-news>a {
font-size: ...;
color: #fff;
}
.desktop .top-news {
background: #000;
float: right;
}
.desktop .top-news .number+span {
font-size: 10px;
color: #fff;
}
.desktop .top-news .entry-meta {
background: #ee3224;
color: #fff;
font-size: 11px;
}
.desktop .top-news .dropdown-menu a {
font-family: Bitter, serif;
font-size: 12px;
color: #000;
}
.desktop .top-news .dropdown-menu a:hover, .desktop .top-news .dropdown-menu a:active, .desktop .top-news .dropdown-menu a:focus {
color: #ee3224;
}
}
Hope this helps !
thank you Dominic, it totally worked. But now there’s a little problem, the border before first menu item is not visible. The main navigation menu bar has no border before it first menu item on the left
You can add the following code to the style.css file:
.navbar, #under-navigation { border-left: 1px solid #ddd; }
Regards,
Please login or Register to submit your answer