i want to hide or remove must read article in v 1.1.0
1 Answers
Hi,
To resolve this issue, you can add the following code to the style.css file:
#under-navigation {
border-left: 1px solid #ddd;
}
.navbar {
border-left: 1px solid #ddd;
}
.desktop .top-news {
display: none;
}
@media (min-width: 980px) {
.desktop .wrap-navigation {
width: 100%;
}
}
Hope this helps !
Please login or Register to submit your answer