HealthScience (mobile version): white version between image and last issue

Hello @Vitaliy,

as per my title, I am writing here because my HealthScience theme installation, while on responsive mode, is showing a very large space between the header image of the homepage and the latest issue summary.
I attach a screenshot about this. On the Demo version this is not happening.
How could I fix this? Have you ever noticed it?
All the best and thank you
Leonardo

31

Hi @leonardo.mancini,

You can change the margin for the container or issue title. E.g.:

.h5.homepage-issue-current {
  margin-top: 0;
}

Or

.container-homepage-issue {
  margin-top: 0;
} 

You may also want to specify screen size for those, e.g.:

@media (max-width: 575px) {
   .h5.homepage-issue-current {
     margin-top: 0;
  }
}

Or if for medium screens: ...(max-width: 767px)...

1 Like