Blog, Website & Page Publishing

viktoriia17
Participant

Space for the webpage - mobile

Résolue

Hi there,

 

Please help me to fix the issue with space on the left for the webpage on mobile. The screenshot is below. 

 

Webpage: https://www.enavate.com/customers

 

Thank you so much,

Viktoriia

 

Screen Shot 2019-04-30 at 2.24.49 PM.png

 

 

 

 

 

 

0 Votes
1 Solution acceptée
Bryantworks
Solution
Conseiller clé | Partenaire solutions Diamond
Conseiller clé | Partenaire solutions Diamond

Space for the webpage - mobile

Résolue

Hey @viktoriia17 

 

I checked out your sites CSS and it seems that there aren't any mobile queries.  You could add something like the following to potentially fix this:

 

@media only screen and (max-width: 600px) {
  body {
    padding: 20px;
  }
}

With this added in my browser I get the following:

Customers _ ENAVATE - Google Chrome 2019-05-01 09.05.28.png

It still looks like you'll have to update the header and menu hamburger too, but you can alter the above CSS to get your desired results.

 

Hope this helps!

Chris Bryant | Your Dedicated HubSpot Expert

Voir la solution dans l'envoi d'origine

4 Réponses
Bryantworks
Solution
Conseiller clé | Partenaire solutions Diamond
Conseiller clé | Partenaire solutions Diamond

Space for the webpage - mobile

Résolue

Hey @viktoriia17 

 

I checked out your sites CSS and it seems that there aren't any mobile queries.  You could add something like the following to potentially fix this:

 

@media only screen and (max-width: 600px) {
  body {
    padding: 20px;
  }
}

With this added in my browser I get the following:

Customers _ ENAVATE - Google Chrome 2019-05-01 09.05.28.png

It still looks like you'll have to update the header and menu hamburger too, but you can alter the above CSS to get your desired results.

 

Hope this helps!

Chris Bryant | Your Dedicated HubSpot Expert
viktoriia17
Participant

Space for the webpage - mobile

Résolue

Hi,

 

Yes, this looks good and helpful! Thank you so much for that! What about creating these queries only for the body, not the header and footer? Is there any specific settings for that?

 

Thank you again,

Viktoriia

0 Votes
Bryantworks
Conseiller clé | Partenaire solutions Diamond
Conseiller clé | Partenaire solutions Diamond

Space for the webpage - mobile

Résolue

Hey @viktoriia17 

 

The query that I posted above is just for the body only.  If you wanted to target elements in your header like your logo you would do something like:

 

@media only screen and (max-width: 600px) {
  .custom-logo {
    padding: 20px;
  }
}

 

Chris Bryant | Your Dedicated HubSpot Expert
viktoriia17
Participant

Space for the webpage - mobile

Résolue

Okay, got it! thank you so much! Will use that.