Hi @podokonnik,
1. What is the vertical blue line between the third and fourth column, and can I remove it?
https://img-fotki.yandex.ru/get/198488/13391858.0/0_15a462_1eab8ff0_orig.jpg
I’m not able to see that blue line when viewing the theme’s demo site on my end:
You’re right that it shouldn’t be there at all. Can you let me know what browser and device you’re viewing the demo site on? I’d like to replicate the issue and get it reported back to the team.
2. How to delete “More project” menu, or change size on very small?
https://img-fotki.yandex.ru/get/37849/13391858.0/0_15a463_a7c44a72_orig.jpg
You can customise that area with some custom CSS.
To add custom CSS: Firstly set up a child theme or activate a custom CSS plugin. (If you have Jetpack installed then you can activate its custom CSS module.)
Add the following custom CSS to reduce the amount of width the area takes up:
@media screen and (min-width: 84em) {
.project-navigation>h1, .project-navigation .project-navigation-wrapper ul {
max-width: 900px;
}
}
Increase/decrease the value of max-width to your liking.
To completely hide the area, use the following:
.project-navigation {
display: none;
}
Hope that’s helpful!