Q.1 ) My primary menu has slided down as you can see in the below picture :
how to align it ?
[IMG]http://i39.tinypic.com/20l10z.jpg[/IMG]
q.2) I do not want that search box as shown in the screenshot . how do i remove it ?
q.3 ) i want to change the color of the hyperlinks in trending news ? how to do that ??
Please help
Hi Sandeep,
Please find my answers below:
Q1. To resolve the menu issue when you add menu to the DW Focus, You can log in to Dashboard > Customize > General Settings, add the following code to the “Custom wp_head() code”
<style>
.navbar .nav .menu-parent-item > a {
padding-right: 20px;
}
</style>
Q2. If you want to remove the search form in the header, You can add the following code to the “Custom wp_head() code”
<style>
#under-navigation .searchForm {
display: none;
}
</style>
3. To change the color of the hyperlinks in trending news, You can add the following code to the “Custom wp_head() code”
<style>
.headlines li a {
color: #....;
}
.headlines li a:hover {
color: #....;
}
</style>
Hope this helps !
Thank you so much. Everything worked. 😀 You guyz are great ^_^.
Thanks for helping
Please login or Register to submit your answer