1 Answers
If you want to remove the number of articles on the top left, you can add the following code to the “Header Script”
<style>
.desktop .top-news .number {
display: none;
}
</style>
Or if you want to remove the button in general. Please add the following code to the “Header Script”
<style>
.desktop .top-news {
display: none;
}
.desktop .wrap-navigation {
width: 100%;
}
.navbar {
border-left: 1px solid #DDD;
}
#under-navigation {
border-left: 1px solid #DDD;
}
</style>
Hope this helps!
Please login or Register to submit your answer